PhoneInput constructor

const PhoneInput({
  1. Key? key,
  2. String? initialCountryCode,
  3. SubmitCallback? onSubmit,
})

An input that allows to enter a phone number and select a country code.

Implementation

const PhoneInput({
  super.key,
  this.initialCountryCode,
  this.onSubmit,
});