ToastAnimation.slideFromBottomFade constructor
Slide from bottom with fade effect. Best for smooth bottom-positioned notifications.
Implementation
factory ToastAnimation.slideFromBottomFade({
Duration? duration,
Curve? curve,
}) {
return ToastAnimation._(
type: ToastAnimationType.slideFromBottomFade,
duration: duration,
curve: curve,
);
}