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