TPhoneWithCountryCodePicker constructor

const TPhoneWithCountryCodePicker({
  1. Key? key,
  2. void countryCodeOnChanged(
    1. CountryCode
    )?,
  3. TextEditingController? phoneController,
  4. String? validator(
    1. String?
    )?,
  5. bool applyValidation = true,
})

Implementation

const TPhoneWithCountryCodePicker({
  super.key,
  this.countryCodeOnChanged,
  this.phoneController,
  this.validator,
  this.applyValidation = true,
});