ToggleRotate constructor

ToggleRotate({
  1. required Widget child,
  2. double beginAngle = 0.0,
  3. double endAngle = 0.0,
  4. Curve curve = Curves.fastOutSlowIn,
  5. int durationMs = 200,
  6. bool isRotate = false,
})

Implementation

ToggleRotate({
  required this.child,
  this.beginAngle = 0.0,
  this.endAngle = 0.0,
  this.curve = Curves.fastOutSlowIn,
  this.durationMs = 200,
  this.isRotate = false,
});