CircularProgressIndicator constructor

CircularProgressIndicator({
  1. required double progress,
  2. double? endAngle,
  3. double? startAngle,
  4. double? thickness,
})

Implementation

CircularProgressIndicator({
  required this.progress,
  this.endAngle,
  this.startAngle,
  this.thickness,
});