RotateAnimation constructor
const
RotateAnimation({
- required BuildContext context,
- required Widget nextPage,
- Duration duration = const Duration(milliseconds: 500),
- int numberOfRotations = 1,
- bool clockwise = true,
Implementation
const RotateAnimation({
required super.context,
required super.nextPage,
super.duration,
this.numberOfRotations = 1,
this.clockwise = true,
});