PhoneNumberInfo constructor

PhoneNumberInfo({
  1. String? extra,
  2. int? client_id,
  3. CountryInfo? country,
  4. string? country_calling_code,
  5. string? formatted_phone_number,
  6. Bool? is_anonymous,
})

Implementation

PhoneNumberInfo({
  super.extra,
  super.client_id,
  this.country,
  this.country_calling_code,
  this.formatted_phone_number,
  this.is_anonymous,
});