RotateAnimation constructor

const RotateAnimation({
  1. required BuildContext context,
  2. required Widget nextPage,
  3. Duration duration = const Duration(milliseconds: 500),
  4. int numberOfRotations = 1,
  5. bool clockwise = true,
})

Implementation

const RotateAnimation({
  required super.context,
  required super.nextPage,
  super.duration,
  this.numberOfRotations = 1,
  this.clockwise = true,
});