LinePainter constructor

LinePainter({
  1. required Color color,
  2. required double progress,
  3. required PaintingStyle paintingStyle,
  4. required StrokeJoin strokeJoin,
  5. required StrokeCap strokeCap,
  6. required double strokeWidth,
})

Implementation

LinePainter({
  required this.color,
  required this.progress,
  required this.paintingStyle,
  required this.strokeJoin,
  required this.strokeCap,
  required this.strokeWidth,
});