TickLine constructor

TickLine({
  1. PaintStyle? style,
  2. double length = 5,
})

Creates a tick line.

Implementation

TickLine({
  PaintStyle? style,
  this.length = 5,
}) : style = style ?? Defaults.strokeStyle;