ToastAnimation.slideFromBottom constructor
Slide from bottom of screen. Best for notifications positioned at bottom.
Implementation
factory ToastAnimation.slideFromBottom({Duration? duration, Curve? curve}) {
return ToastAnimation._(
type: ToastAnimationType.slideFromBottom,
duration: duration,
curve: curve,
);
}