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