ModulaCircularProgress constructor

const ModulaCircularProgress({
  1. Key? key,
  2. double? value,
  3. double strokeWidth = 4.0,
  4. double size = 40.0,
  5. Color? backgroundColor,
  6. Color? valueColor,
})

Implementation

const ModulaCircularProgress({
  super.key,
  this.value,
  this.strokeWidth = 4.0,
  this.size = 40.0,
  this.backgroundColor,
  this.valueColor,
});