openCurrentActionPane method

Future<void> openCurrentActionPane({
  1. Duration duration = _defaultMovementDuration,
  2. Curve curve = _defaultCurve,
})

Opens the current ActionPane.

Implementation

Future<void> openCurrentActionPane({
  Duration duration = _defaultMovementDuration,
  Curve curve = _defaultCurve,
}) async {
  return openTo(
    actionPaneConfigurator!.extentRatio,
    duration: duration,
    curve: curve,
  );
}