ToastAnimation.slideOutBottomFade constructor
Slide out to the bottom with a fade. Pairs with springFromBottom / slideFromBottomFade entries.
Implementation
factory ToastAnimation.slideOutBottomFade({
Duration? duration,
Curve? curve,
}) {
return ToastAnimation._(
type: ToastAnimationType.slideFromBottomFade,
duration: duration ?? const Duration(milliseconds: 300),
curve: curve ?? Curves.easeInBack,
);
}