RotateWidget constructor

const RotateWidget({
  1. Key? key,
  2. required Widget child,
  3. bool? isClockwise,
  4. Duration? duration,
  5. Curve? curve,
  6. bool? isRepeat,
})

Implementation

const RotateWidget({Key? key, required this.child, this.isClockwise, this.duration, this.curve, this.isRepeat}) : super(key: key);