copyWithWrapped method

TransactionsRecurringGetRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String>? accessToken,
  3. Wrapped<String?>? secret,
  4. Wrapped<TransactionsRecurringGetRequestOptions?>? options,
  5. Wrapped<List<String>>? accountIds,
})

Implementation

TransactionsRecurringGetRequest copyWithWrapped(
    {Wrapped<String?>? clientId,
    Wrapped<String>? accessToken,
    Wrapped<String?>? secret,
    Wrapped<TransactionsRecurringGetRequestOptions?>? options,
    Wrapped<List<String>>? accountIds}) {
  return TransactionsRecurringGetRequest(
      clientId: (clientId != null ? clientId.value : this.clientId),
      accessToken:
          (accessToken != null ? accessToken.value : this.accessToken),
      secret: (secret != null ? secret.value : this.secret),
      options: (options != null ? options.value : this.options),
      accountIds: (accountIds != null ? accountIds.value : this.accountIds));
}