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