copyWithWrapped method
Implementation
TransactionsEnrichGetRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? accountType,
Wrapped<List<ClientProvidedTransaction>>? transactions,
Wrapped<bool?>? includeLegacyCategories}) {
return TransactionsEnrichGetRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
accountType:
(accountType != null ? accountType.value : this.accountType),
transactions:
(transactions != null ? transactions.value : this.transactions),
includeLegacyCategories: (includeLegacyCategories != null
? includeLegacyCategories.value
: this.includeLegacyCategories));
}