copyWith method
Implementation
ExternalPaymentRefundDetails copyWith(
{String? name, String? iban, RecipientBACSNullable? bacs}) {
return ExternalPaymentRefundDetails(
name: name ?? this.name,
iban: iban ?? this.iban,
bacs: bacs ?? this.bacs);
}