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