GaugeTextCounter constructor
GaugeTextCounter({})
Implementation
GaugeTextCounter({
required this.isDecimal,
required this.width,
required this.counterAlign,
required this.start,
required this.end,
required this.value,
required this.textStyle,
}) : tickPaint = Paint(),
textPainter = TextPainter(
textAlign: TextAlign.center,
textDirection: TextDirection.rtl,
) {
tickPaint.color = Colors.green;
}