RotationTransition constructor Null safety
Creates a rotation transition.
The turns
argument must not be null.
Implementation
const RotationTransition({
super.key,
required Animation<double> turns,
this.alignment = Alignment.center,
this.filterQuality,
this.child,
}) : assert(turns != null),
super(listenable: turns);