TickConfig constructor

const TickConfig({
  1. double tickLength = 6,
  2. double tickPadding = 3,
  3. double tickStrokeWidth = 1,
  4. Color tickColor = const Color(0xFF000000),
})

Creates a tick configuration.

Implementation

const TickConfig({
  this.tickLength = 6,
  this.tickPadding = 3,
  this.tickStrokeWidth = 1,
  this.tickColor = const Color(0xFF000000),
});