DottedLinePainter constructor

DottedLinePainter({
  1. required Color lineColor,
  2. double dashLength = 5.0,
  3. double dashGapLength = 5.0,
  4. double lineThickness = 1.0,
})

Implementation

DottedLinePainter({
  required this.lineColor,
  this.dashLength = 5.0,
  this.dashGapLength = 5.0,
  this.lineThickness = 1.0,
});