DashPainter constructor

const DashPainter({
  1. double step = 2,
  2. double span = 2,
  3. int pointCount = 0,
  4. double? pointWidth,
})

Implementation

const DashPainter({
  this.step = 2,
  this.span = 2,
  this.pointCount = 0,
  this.pointWidth,
});