FlutterFormInputSlider constructor

const FlutterFormInputSlider(
  1. {required FlutterFormInputController<double> controller,
  2. required String validationMessage,
  3. Key? key,
  4. FocusNode? focusNode,
  5. Widget? label,
  6. String? validator(
    1. double?
    )?,
  7. int minValue = 0,
  8. int maxValue = 100}
)

Creates a FlutterFormInputPassword.

The controller parameter is required. The focusNode parameter specifies the focus node of the input field. The label parameter specifies the label of the input field. The enabled parameter specifies whether the input field is enabled.

Implementation

const FlutterFormInputSlider({
  required super.controller,
  required this.validationMessage,
  super.key,
  super.focusNode,
  super.label,
  this.validator,
  this.minValue = 0,
  this.maxValue = 100,
}) : assert(minValue < maxValue, 'minValue must be less than maxValue');