TDashedLine constructor

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

Implementation

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