FlutterFormInputSlider constructor

const FlutterFormInputSlider({
  1. Key? key,
  2. int minValue = 0,
  3. int maxValue = 100,
  4. dynamic onSaved(
    1. double?
    )?,
  5. dynamic onChanged(
    1. double?
    )?,
  6. double? initialValue,
  7. String? validator(
    1. double?
    )?,
  8. FocusNode? focusNode,
})

Implementation

const FlutterFormInputSlider({
  super.key,
  this.minValue = 0,
  this.maxValue = 100,
  this.onSaved,
  this.onChanged,
  this.initialValue,
  this.validator,
  this.focusNode,
}) : assert(minValue < maxValue, 'minValue must be less than maxValue');