PhoneNumberInfo constructor

PhoneNumberInfo({
  1. CountryInfo? country,
  2. required String countryCallingCode,
  3. required String formattedPhoneNumber,
  4. required bool isAnonymous,
})

Implementation

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