SplashAnimation.rotate constructor
Rotation animation (full 360°).
Implementation
factory SplashAnimation.rotate({
int durationMs = 1000,
Curve curve = Curves.linear,
int delayMs = 0,
}) =>
SplashAnimation(
type: SplashAnimationType.rotate,
durationMs: durationMs,
curve: curve,
delayMs: delayMs,
);