LinearTickStyle constructor

const LinearTickStyle(
  1. {double length = 4,
  2. double thickness = 1,
  3. Color? color}
)

Creates linear tick style with default or required properties.

The arguments length, thickness, must be non-negative.

Implementation

const LinearTickStyle({this.length = 4, this.thickness = 1, this.color});