DotLinePainter constructor

DotLinePainter({
  1. Color paintColor = Colors.black,
  2. double strokeWidth = 1,
  3. int space = 4,
  4. int dotHeight = 4,
  5. StrokeCap strokeCap = StrokeCap.butt,
  6. Axis axis = Axis.vertical,
})

Implementation

DotLinePainter({
  this.paintColor = Colors.black,
  this.strokeWidth = 1,
  this.space = 4,
  this.dotHeight = 4,
  this.strokeCap = StrokeCap.butt,
  this.axis = Axis.vertical,
});