DashedCirclePainter constructor
DashedCirclePainter({})
Creates a dashed circle painter.
All parameters are required:
color: The color of the dashed borderstrokeWidth: The thickness of the borderdashLength: The length of each dashdashGap: The space between dashes
Implementation
DashedCirclePainter({
required this.color,
required this.strokeWidth,
required this.dashLength,
required this.dashGap,
});