RangeRadialGaugePainter constructor

RangeRadialGaugePainter({
  1. required double sweepAngle,
  2. required Color pointerColor,
  3. required String minValue,
  4. required String maxValue,
  5. required double actualValue,
  6. required int decimalPlaces,
  7. required List<Range> ranges,
  8. required double maxDegree,
  9. required double startDegree,
  10. required bool isLegend,
  11. required double strokeWidth,
  12. required TextStyle actualValueTextStyle,
  13. required TextSpan unit,
  14. Key? key,
})

Implementation

RangeRadialGaugePainter({
  required this.sweepAngle,
  required this.pointerColor,
  required this.minValue,
  required this.maxValue,
  required this.actualValue,
  required this.decimalPlaces,
  required this.ranges,
  required this.maxDegree,
  required this.startDegree,
  required this.isLegend,
  required this.strokeWidth,
  required this.actualValueTextStyle,
  required this.unit,
  Key? key,
});