FlutterFormInputNumberPickerController constructor

FlutterFormInputNumberPickerController({
  1. required String? id,
  2. bool mandatory = true,
  3. int? value,
  4. String checkPageTitle(
    1. int? value
    )?,
  5. String checkPageDescription(
    1. int? value
    )?,
  6. void onChanged(
    1. int? value
    )?,
})

Implementation

FlutterFormInputNumberPickerController({
  required this.id,
  this.mandatory = true,
  this.value,
  this.checkPageTitle,
  this.checkPageDescription,
  this.onChanged,
});