FlutterSliderIgnoreSteps constructor

FlutterSliderIgnoreSteps({
  1. double? from,
  2. double? to,
})

Implementation

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