createAnimationController method
Creates an animation controller useful for driving a snack bar's entrance and exit animation.
Implementation
static AnimationController createAnimationController({ @required TickerProvider vsync }) {
  return AnimationController(
    duration: _kSnackBarTransitionDuration,
    debugLabel: 'SnackBar',
    vsync: vsync,
  );
}