MGaugeGraphRound constructor

const MGaugeGraphRound({
  1. Key? key,
  2. required double value,
  3. double max = 100,
  4. double graphWidth = 10,
  5. Color activeColor = Colors.red,
  6. List<Color>? activeGradientColors,
  7. Color inactiveColor = Colors.white,
  8. double arcStartAngle = 90,
  9. bool reverse = false,
  10. StrokeCap strokeCap = StrokeCap.butt,
  11. bool animate = false,
  12. int animateDuration = 200,
})

Implementation

const MGaugeGraphRound({
  super.key,
  required this.value,
  this.max = 100,
  this.graphWidth = 10,
  this.activeColor = Colors.red,
  this.activeGradientColors,
  this.inactiveColor = Colors.white,
  this.arcStartAngle = 90,
  this.reverse = false,
  this.strokeCap = StrokeCap.butt,
  this.animate = false,
  this.animateDuration = 200,
});