CustomCircularIndicator constructor

const CustomCircularIndicator({
  1. Key? key,
  2. required double strokeWidth,
  3. required double startAngle,
  4. required double sweepAngle,
  5. required double radius,
  6. required Color firstCircleColor,
  7. required Color secondCircleColor,
  8. required Color thirdCircleColor,
  9. required double width,
  10. required double height,
})

Implementation

const CustomCircularIndicator({
  Key? key,
  required this.strokeWidth,
  required this.startAngle,
  required this.sweepAngle,
  required this.radius,
  required this.firstCircleColor,
  required this.secondCircleColor,
  required this.thirdCircleColor,
  required this.width,
  required this.height,
}) : super(key: key);