ModulaRotateIn constructor

const ModulaRotateIn({
  1. required Widget child,
  2. Key? key,
  3. Duration duration = const Duration(milliseconds: 600),
  4. Curve curve = Curves.easeOut,
  5. double angle = 1.0,
  6. bool clockwise = true,
})

Implementation

const ModulaRotateIn({
  required this.child,
  super.key,
  this.duration = const Duration(milliseconds: 600),
  this.curve = Curves.easeOut,
  this.angle = 1.0, // default 1 radian (~57 deg)
  this.clockwise = true,
});