copyWith method
Implementation
TransferRepaymentReturn copyWith(
{String? transferId,
int? eventId,
String? amount,
String? isoCurrencyCode}) {
return TransferRepaymentReturn(
transferId: transferId ?? this.transferId,
eventId: eventId ?? this.eventId,
amount: amount ?? this.amount,
isoCurrencyCode: isoCurrencyCode ?? this.isoCurrencyCode);
}