RotateView constructor

const RotateView({
  1. Key? key,
  2. required double angle,
  3. Duration duration = const Duration(milliseconds: 300),
  4. required Widget child,
})

Implementation

const RotateView({
  super.key,
  required this.angle,
  this.duration = const Duration(milliseconds: 300),
  required this.child,
});