RotateEffect constructor

const RotateEffect({
  1. double rotationAngle = 10,
  2. bool snap = true,
  3. AnimationType type = AnimationType.start,
  4. AlignmentGeometry alignment = Alignment.center,
})

Implementation

const RotateEffect(
    {this.rotationAngle = 10,
    this.snap = true,
    this.type = AnimationType.start,
    this.alignment = Alignment.center})
    : assert(rotationAngle >= 0.0);