ProgressIndicatorPainter constructor

const ProgressIndicatorPainter({
  1. required double width,
  2. required int startAngle,
  3. required Color color,
  4. required double progressValue,
  5. double? thickness = 30,
})

Implementation

const ProgressIndicatorPainter(
    {required this.width,
    required this.startAngle,
    required this.color,
    required this.progressValue,
    this.thickness = 30})
    : super();