PhoneField constructor

const PhoneField({
  1. Key? key,
  2. bool isRequired = false,
  3. bool isEditable = true,
  4. String? defaultNumber,
  5. String? defaultCountryCode,
  6. dynamic onChanged(
    1. String
    )?,
  7. dynamic onSaved(
    1. String?
    )?,
})

Implementation

const PhoneField({
  Key? key,
  this.isRequired = false,
  this.isEditable = true,
  this.defaultNumber,
  this.defaultCountryCode,
  this.onChanged,
  this.onSaved,
}) : super(key: key);