FlutterFormInputNumberPicker constructor

const FlutterFormInputNumberPicker({
  1. Key? key,
  2. int minValue = 0,
  3. int maxValue = 100,
  4. dynamic onSaved(
    1. int?
    )?,
  5. dynamic onChanged(
    1. int?
    )?,
  6. int? initialValue,
  7. String? validator(
    1. int?
    )?,
  8. Axis axis = Axis.vertical,
})

Implementation

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