RangeTickSpec<D> constructor

const RangeTickSpec<D>(
  1. D value, {
  2. required D rangeStartValue,
  3. required D rangeEndValue,
  4. String? label,
  5. TextStyleSpec? style,
})

Creates a range tick for value. A label optionally labels this tick. If not set, the tick formatter formatter of the axis is used. A style optionally sets the style for this tick. If not set, the style of the axis is used. A rangeStartValue represents value of this range tick's starting point. A rangeEndValue represents the value of this range tick's ending point.

Implementation

const RangeTickSpec(
  super.value, {
  required this.rangeStartValue,
  required this.rangeEndValue,
  super.label,
  super.style,
});