PhoneNumberInfo constructor

const PhoneNumberInfo({
  1. CountryInfo? country,
  2. required String countryCallingCode,
  3. required String formattedPhoneNumber,
  4. required bool isAnonymous,
  5. dynamic extra,
  6. int? clientId,
})

Contains information about a phone number

Implementation

const PhoneNumberInfo({
  this.country,
  required this.countryCallingCode,
  required this.formattedPhoneNumber,
  required this.isAnonymous,
  this.extra,
  this.clientId,
});