MGaugeGraphRound constructor
const
MGaugeGraphRound({
- Key? key,
- required double value,
- double max = 100,
- double graphWidth = 10,
- Color activeColor = Colors.red,
- List<
Color> ? activeGradientColors, - Color inactiveColor = Colors.white,
- double arcStartAngle = 90,
- bool reverse = false,
- StrokeCap strokeCap = StrokeCap.butt,
- bool animate = false,
- 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,
});