CircularProgressIndicator constructor

CircularProgressIndicator({
  1. required double value,
  2. PdfColor? color,
  3. double strokeWidth = 4.0,
  4. PdfColor? backgroundColor,
})

Implementation

CircularProgressIndicator({
  required this.value,
  this.color,
  this.strokeWidth = 4.0,
  this.backgroundColor,
});