FieldRangeSlider constructor

const FieldRangeSlider({
  1. String? activeColor,
  2. int? divisions,
  3. String? inactiveColor,
  4. String? labels,
  5. String? fieldLabel,
  6. bool? suffix,
  7. required double start,
  8. required double end,
  9. required double max,
  10. required double min,
  11. String? onChanged,
  12. String? OnChangeStart,
  13. String? OnChangeEnd,
  14. String? semanticFormatter,
  15. Map<String, dynamic>? sliderThemeData,
})

Implementation

const FieldRangeSlider({
  this.activeColor,
  this.divisions,
  this.inactiveColor,
  this.labels,
  this.fieldLabel,
  this.suffix,
  required this.start,
  required this.end,
  required this.max,
  required this.min,
  this.onChanged,
  this.OnChangeStart,
  this.OnChangeEnd,
  this.semanticFormatter,
  this.sliderThemeData,
});