DashPainter constructor

DashPainter({
  1. required int dashes,
  2. required Color emptyColor,
  3. required Color filledColor,
  4. required double gapSize,
  5. required double strokeWidth,
  6. required double fillCount,
  7. required StrokeCap strokeCap,
})

Implementation

DashPainter({
  required this.dashes,
  required this.emptyColor,
  required this.filledColor,
  required this.gapSize,
  required this.strokeWidth,
  required this.fillCount,
  required this.strokeCap,
});