RadialPainter constructor

RadialPainter({
  1. required Color bgColor,
  2. required Color lineColor,
  3. required double strokeWidth,
  4. required double percent,
  5. required List<Color> gradientColors,
})

Implementation

RadialPainter(
    {required this.bgColor,
    required this.lineColor,
    required this.strokeWidth,
    required this.percent,
    required this.gradientColors});