copyWith method
Implementation
PartnerEndCustomerAddress copyWith(
{String? city,
String? street,
String? region,
String? postalCode,
String? countryCode}) {
return PartnerEndCustomerAddress(
city: city ?? this.city,
street: street ?? this.street,
region: region ?? this.region,
postalCode: postalCode ?? this.postalCode,
countryCode: countryCode ?? this.countryCode);
}