RotateEffect constructor

const RotateEffect({
  1. Duration? delay,
  2. Duration? duration,
  3. Curve? curve,
  4. double? begin,
  5. double? end,
  6. Alignment? alignment,
  7. bool? transformHitTests,
})

Implementation

const RotateEffect({
  super.delay,
  super.duration,
  super.curve,
  double? begin,
  double? end,
  this.alignment,
  bool? transformHitTests,
})  : transformHitTests = transformHitTests ?? defaultTransformHitTests,
      super(
        begin: begin ?? (end == null ? defaultValue : neutralValue),
        end: end ?? neutralValue,
      );