FlutterSliderFixedValue constructor
FlutterSliderFixedValue({
- int? percent,
- dynamic value,
Implementation
FlutterSliderFixedValue({
this.percent,
this.value,
}) : assert(
percent != null && value != null && percent >= 0 && percent <= 100);