ArcPainter constructor

ArcPainter({
  1. required double from,
  2. required double to,
  3. required double radius,
  4. required double strokeWidth,
  5. required Color color,
})

Implementation

ArcPainter(
    {required this.from,
    required this.to,
    required this.radius,
    required this.strokeWidth,
    required this.color});