PrefSlider<T extends num> constructor

const PrefSlider<T extends num>({
  1. Key? key,
  2. Widget? title,
  3. required String pref,
  4. Widget? subtitle,
  5. bool ignoreTileTap = false,
  6. ValueChanged<T>? onChange,
  7. bool? disabled,
  8. T? min,
  9. T? max,
  10. int? divisions,
  11. String label(
    1. T value
    )?,
  12. Widget trailing(
    1. T value
    )?,
  13. Axis direction = Axis.horizontal,
})

Implementation

const PrefSlider({
  super.key,
  this.title,
  required this.pref,
  this.subtitle,
  this.ignoreTileTap = false,
  this.onChange,
  this.disabled,
  this.min,
  this.max,
  this.divisions,
  this.label,
  this.trailing,
  this.direction = Axis.horizontal,
});