HandPainter constructor
Implementation
HandPainter(
{required this.value,
required this.start,
required this.end,
required this.color})
: minuteHandPaint = Paint() {
minuteHandPaint.color = this.color;
minuteHandPaint.style = PaintingStyle.fill;
}