copyWithWrapped method

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

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