copyWith method

Implementation

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