Creates an animation controller suitable for controlling a BottomSheet.
Source
static AnimationController createAnimationController(TickerProvider vsync) { return new AnimationController( duration: _kBottomSheetDuration, debugLabel: 'BottomSheet', vsync: vsync, ); }