ToastAnimation.rotate constructor
Rotation animation. Best for playful/casual apps.
Implementation
factory ToastAnimation.rotate({Duration? duration, Curve? curve}) {
return ToastAnimation._(
type: ToastAnimationType.rotate,
duration: duration,
curve: curve,
);
}