FlutterFormInputNumberPicker constructor

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

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');