TDashedLinePainter constructor

const TDashedLinePainter({
  1. Axis direction = Axis.vertical,
  2. required Color color,
  3. double strokeWidth = 2.0,
  4. double dashLength = 5.0,
  5. double dashGap = 3.5,
  6. TTimelineLineStyle style = TTimelineLineStyle.dashed,
})

Implementation

const TDashedLinePainter({
  this.direction = Axis.vertical,
  required this.color,
  this.strokeWidth = 2.0,
  this.dashLength = 5.0,
  this.dashGap = 3.5,
  this.style = TTimelineLineStyle.dashed,
});