FlutterSliderRangeStep constructor

FlutterSliderRangeStep({
  1. double? from,
  2. double? to,
  3. double? step,
})

Implementation

FlutterSliderRangeStep({
  this.from,
  this.to,
  this.step,
}) : assert(from != null && to != null && step != null);