RangeTickSpec<D> constructor

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

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(
  D value, {
  String? label,
  TextStyleSpec? style,
  required this.rangeStartValue,
  required this.rangeEndValue,
}) : super(value, label: label, style: style);