ToastAnimation.slideFromRight constructor
Slide from right side of screen. Best for right-to-left reading flow.
Implementation
factory ToastAnimation.slideFromRight({Duration? duration, Curve? curve}) {
return ToastAnimation._(
type: ToastAnimationType.slideFromRight,
duration: duration,
curve: curve,
);
}