CircularProgressProps constructor

const CircularProgressProps({
  1. required double value,
  2. String? size,
  3. String? strokeWidth,
  4. String? fillColor,
  5. String? trackColor,
  6. String? label,
  7. bool showPercentage = true,
})

Implementation

const CircularProgressProps({
  required this.value,
  this.size,
  this.strokeWidth,
  this.fillColor,
  this.trackColor,
  this.label,
  this.showPercentage = true,
});