MGaugeGraphPainter constructor

MGaugeGraphPainter({
  1. required double value,
  2. required double graphWidth,
  3. required Color activeColor,
  4. Gradient? activeGradientColor,
  5. required Color inactiveColor,
  6. required double arcStartAngle,
  7. required double arcSweepAngle,
  8. required StrokeCap strokeCap,
})

Implementation

MGaugeGraphPainter({
  required this.value,
  required this.graphWidth,
  required this.activeColor,
  this.activeGradientColor,
  required this.inactiveColor,
  required this.arcStartAngle,
  required this.arcSweepAngle,
  required this.strokeCap,
});