RotateAroundEffect constructor

RotateAroundEffect(
  1. double angle,
  2. EffectController controller, {
  3. required Vector2 center,
  4. bool alignRotation = true,
  5. void onComplete()?,
  6. ComponentKey? key,
})

Implementation

RotateAroundEffect(
  this.angle,
  super.controller, {
  required this.center,
  this.alignRotation = true,
  super.onComplete,
  super.key,
});