FlutterFormInputNumberPicker constructor
const
FlutterFormInputNumberPicker({ - Key? key,
- int minValue = 0,
- int maxValue = 100,
- dynamic onSaved(
- int?
)?,
- dynamic onChanged(
- int?
)?,
- int? initialValue,
- String? validator(
- int?
)?,
- 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');