CircularProgress constructor

const CircularProgress({
  1. required double value,
  2. String? size,
  3. String? strokeWidth,
  4. ProgressStyle? style,
  5. String? label,
  6. bool showPercentage = true,
  7. Key? key,
})

Implementation

const CircularProgress({
  required this.value,
  this.size,
  this.strokeWidth,
  this.style,
  this.label,
  this.showPercentage = true,
  super.key,
});