copyWith method
PaymentInitiationRecipient
copyWith({
- String? recipientId,
- String? name,
- PaymentInitiationAddress? address,
- String? iban,
- RecipientBACSNullable? bacs,
Implementation
PaymentInitiationRecipient copyWith(
{String? recipientId,
String? name,
PaymentInitiationAddress? address,
String? iban,
RecipientBACSNullable? bacs}) {
return PaymentInitiationRecipient(
recipientId: recipientId ?? this.recipientId,
name: name ?? this.name,
address: address ?? this.address,
iban: iban ?? this.iban,
bacs: bacs ?? this.bacs);
}