CircleBorderPainter constructor

CircleBorderPainter({
  1. required Color borderColor,
  2. required int dashCounts,
  3. int spaceLength = 10,
  4. required double strokeVal,
})

Implementation

CircleBorderPainter({
  required this.borderColor,
  required this.dashCounts,
  this.spaceLength = 10,
  required this.strokeVal,
});