open method

Future<void> open({
  1. Duration duration = kDefaultDuration,
  2. Curve curve = Curves.easeOut,
})

Animates the sheet fully open (SheetStage.expanded).

Implementation

Future<void> open({
  Duration duration = kDefaultDuration,
  Curve curve = Curves.easeOut,
}) =>
    animateTo(const SheetStage.expanded(), duration: duration, curve: curve);