LoadingIconPainter constructor

LoadingIconPainter({
  1. required double radius,
  2. required double strokeWidth,
  3. bool ratioReverseIfOdd = true,
  4. double ratio1stPoint = 0.0,
  5. double ratio1stSweep = 4.0 / 5.0,
  6. double? startAngle1st,
  7. double? sweepAngle1st,
  8. double? startAngle2nd,
  9. double? sweepAngle2nd,
  10. Color? color1st,
  11. Color? color2nd,
})

Implementation

LoadingIconPainter({
  required this.radius,
  required this.strokeWidth,
  this.ratioReverseIfOdd = true,
  this.ratio1stPoint = 0.0,
  this.ratio1stSweep = 4.0 / 5.0,
  this.startAngle1st,
  this.sweepAngle1st,
  this.startAngle2nd,
  this.sweepAngle2nd,
  this.color1st,
  this.color2nd,
});