DashedBorderPainter constructor

DashedBorderPainter({
  1. required Color color,
  2. double strokeWidth = 2.0,
  3. double dashWidth = 5.0,
  4. double dashSpace = 3.0,
  5. BorderRadius? borderRadius,
})

Implementation

DashedBorderPainter({
  required this.color,
  this.strokeWidth = 2.0,
  this.dashWidth = 5.0,
  this.dashSpace = 3.0,
  this.borderRadius,
});