CirclePainter constructor

CirclePainter(
  1. double percentage,
  2. double maxValue,
  3. bool isDarkMode,
  4. double currentValue,
  5. double minValue, {
  6. Color? backgroundColor,
  7. Color? progressColor,
  8. Color? markColor,
  9. Color? borderColor,
})

Implementation

CirclePainter(
    this.percentage,
    this.maxValue,
    this.isDarkMode,
    this.currentValue,
    this.minValue, {
      this.backgroundColor,
      this.progressColor,
      this.markColor,
      this.borderColor,
    });