FxPhoneInput constructor

const FxPhoneInput({
  1. Key? key,
  2. FxPhoneInputConfig config = const FxPhoneInputConfig(),
  3. TextEditingController? controller,
  4. String? initialValue,
  5. String? initialCountryCode,
  6. FormFieldValidator<String>? validator,
  7. FxPhoneInputChanged? onChanged,
  8. ValueChanged<String>? onSubmitted,
  9. ValueChanged<String?>? onSaved,
})

Implementation

const FxPhoneInput({
  super.key,
  this.config = const FxPhoneInputConfig(),
  this.controller,
  this.initialValue,
  this.initialCountryCode,
  this.validator,
  this.onChanged,
  this.onSubmitted,
  this.onSaved,
});