copyWith method

TransactionsEnrichGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? accountType,
  4. List<ClientProvidedTransaction>? transactions,
  5. bool? includeLegacyCategories,
})

Implementation

TransactionsEnrichGetRequest copyWith(
    {String? clientId,
    String? secret,
    String? accountType,
    List<ClientProvidedTransaction>? transactions,
    bool? includeLegacyCategories}) {
  return TransactionsEnrichGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      accountType: accountType ?? this.accountType,
      transactions: transactions ?? this.transactions,
      includeLegacyCategories:
          includeLegacyCategories ?? this.includeLegacyCategories);
}