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