RotateEffect constructor
const
RotateEffect({})
Implementation
const RotateEffect({
Duration? delay,
Duration? duration,
Curve? curve,
double? begin,
double? end,
this.alignment,
}) : super(
delay: delay,
duration: duration,
curve: curve,
begin: begin ?? (end == null ? defaultValue : neutralValue),
end: end ?? neutralValue,
);