copyWithWrapped method
Implementation
ExternalPaymentRefundDetails copyWithWrapped(
{Wrapped<String>? name,
Wrapped<String?>? iban,
Wrapped<RecipientBACSNullable?>? bacs}) {
return ExternalPaymentRefundDetails(
name: (name != null ? name.value : this.name),
iban: (iban != null ? iban.value : this.iban),
bacs: (bacs != null ? bacs.value : this.bacs));
}