HandPainter constructor

HandPainter({
  1. required double shadowHand,
  2. required Hand hand,
  3. required double value,
  4. required int start,
  5. required int end,
  6. required Color color,
  7. required double handSize,
})

Implementation

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