InputPhoneNumberWidget constructor

InputPhoneNumberWidget({
  1. Key? key,
  2. dynamic onInputValidated(
    1. bool
    )?,
  3. required dynamic onSubmitted(
    1. PhoneNumber
    ),
  4. required TextEditingController controller,
  5. required FocusNode focusNode,
  6. bool enabled = true,
  7. Color? theme,
  8. String? initialCountryCode,
})

Implementation

InputPhoneNumberWidget({
  Key? key,
  this.onInputValidated,
  required this.onSubmitted,
  required this.controller,
  required this.focusNode,
  this.enabled = true,
  this.theme,
  this.initialCountryCode,
}) : super(key: key);