createAnimationController static method

AnimationController createAnimationController(
  1. TickerProvider vsync
)

Implementation

static AnimationController createAnimationController(TickerProvider vsync) {
  return AnimationController(
    duration: _bottomSheetEnterDuration,
    reverseDuration: _bottomSheetExitDuration,
    debugLabel: 'BottomSheet',
    vsync: vsync,
  );
}