copyWith method
Creates a copy of this postal address
Implementation
@useResult
Contact$PostalAddress copyWith({
String? label,
String? street,
String? city,
String? postcode,
String? region,
String? country,
}) =>
Contact$PostalAddress(
label: label ?? this.label,
street: street ?? this.street,
city: city ?? this.city,
postcode: postcode ?? this.postcode,
region: region ?? this.region,
country: country ?? this.country,
);