MainTick constructor

const MainTick({
  1. MinorTick? minorTick,
  2. bool show = true,
  3. bool inside = true,
  4. num length = 3,
  5. LineStyle lineStyle = const LineStyle(),
  6. LabelStyle labelStyle = const LabelStyle(),
  7. num labelPadding = 3,
  8. int interval = -1,
  9. num tickOffset = 0,
})

Implementation

const MainTick({
  this.minorTick,
  super.show,
  super.inside,
  super.length,
  super.lineStyle,
  super.labelStyle,
  super.labelPadding,
  super.interval,
  super.tickOffset,
});