copyWith method

TransferRepayment copyWith({
  1. String? repaymentId,
  2. DateTime? created,
  3. String? amount,
  4. String? isoCurrencyCode,
})

Implementation

TransferRepayment copyWith(
    {String? repaymentId,
    DateTime? created,
    String? amount,
    String? isoCurrencyCode}) {
  return TransferRepayment(
      repaymentId: repaymentId ?? this.repaymentId,
      created: created ?? this.created,
      amount: amount ?? this.amount,
      isoCurrencyCode: isoCurrencyCode ?? this.isoCurrencyCode);
}