FCRotatingPlane constructor

const FCRotatingPlane({
  1. Key? key,
  2. double size = 25.0,
  3. Color color = const Color(0xFFF6A42A),
  4. Duration duration = const Duration(milliseconds: 1000),
  5. Curve rotateCurveX = Curves.easeIn,
  6. Curve rotateCurveY = Curves.easeOut,
})

Implementation

const FCRotatingPlane({
  Key? key,
  this.size = 25.0,
  this.color = const Color(0xFFF6A42A),
  this.duration = const Duration(milliseconds: 1000),
  this.rotateCurveX = Curves.easeIn,
  this.rotateCurveY = Curves.easeOut,
}) : super(key: key);