copyWith method

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

Implementation

PhoneNumberInfo copyWith({
  CountryInfo? country,
  String? countryCallingCode,
  String? formattedPhoneNumber,
  bool? isAnonymous,
}) => PhoneNumberInfo(
  country: country ?? this.country,
  countryCallingCode: countryCallingCode ?? this.countryCallingCode,
  formattedPhoneNumber: formattedPhoneNumber ?? this.formattedPhoneNumber,
  isAnonymous: isAnonymous ?? this.isAnonymous,
);