ToastAnimation.bounceInFromBottom constructor

ToastAnimation.bounceInFromBottom({
  1. Duration? duration,
})

Bounce in from bottom with elastic effect. Best for playful bottom notifications.

Implementation

factory ToastAnimation.bounceInFromBottom({Duration? duration}) {
  return ToastAnimation._(
    type: ToastAnimationType.slideFromBottom,
    duration: duration ?? const Duration(milliseconds: 600),
    curve: Curves.elasticOut,
  );
}