copyWith method

TransferRepaymentReturn copyWith({
  1. String? transferId,
  2. int? eventId,
  3. String? amount,
  4. String? isoCurrencyCode,
})

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);
}