FlutterFormInputPhoneController constructor

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

Implementation

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