RotationEffect constructor

const RotationEffect({
  1. double angle = 0,
  2. Offset origin = Offset.zero,
  3. AlignmentGeometry alignment = Alignment.center,
})

Creates a RotationEffect.

Implementation

const RotationEffect({
  this.angle = 0,
  this.origin = Offset.zero,
  this.alignment = Alignment.center,
});