copyWith method

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

Implementation

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