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