NiceCircularGauge constructor

const NiceCircularGauge({
  1. Key? key,
  2. required double value,
  3. double min = 0,
  4. double max = 100,
  5. double size = 200,
  6. double startAngle = 225,
  7. double sweepAngle = 270,
  8. Color? color,
  9. Color? trackColor,
  10. String? label,
  11. String formatValue(
    1. double
    )?,
  12. List<NiceGaugeRange>? ranges,
})

Implementation

const NiceCircularGauge({
  super.key,
  required this.value,
  this.min = 0,
  this.max = 100,
  this.size = 200,
  this.startAngle = 225,
  this.sweepAngle = 270,
  this.color,
  this.trackColor,
  this.label,
  this.formatValue,
  this.ranges,
});