DashedCircle constructor

DashedCircle({
  1. Widget? child,
  2. int dashes = _DefaultDashes,
  3. Color color = _DefaultColor,
  4. double gapSize = _DefaultGapSize,
  5. double strokeWidth = _DefaultStrokeWidth,
})

Implementation

DashedCircle(
    {this.child,
    this.dashes = _DefaultDashes,
    this.color = _DefaultColor,
    this.gapSize = _DefaultGapSize,
    this.strokeWidth = _DefaultStrokeWidth});