copyWith method
Implementation
PaymentInitiationAddress copyWith(
{List<String>? street,
String? city,
String? postalCode,
String? country}) {
return PaymentInitiationAddress(
street: street ?? this.street,
city: city ?? this.city,
postalCode: postalCode ?? this.postalCode,
country: country ?? this.country);
}