copyWithWrapped method

InvestmentsTransactionsGetRequestOptions copyWithWrapped({
  1. Wrapped<List<String>?>? accountIds,
  2. Wrapped<int?>? count,
  3. Wrapped<int?>? offset,
})

Implementation

InvestmentsTransactionsGetRequestOptions copyWithWrapped(
    {Wrapped<List<String>?>? accountIds,
    Wrapped<int?>? count,
    Wrapped<int?>? offset}) {
  return InvestmentsTransactionsGetRequestOptions(
      accountIds: (accountIds != null ? accountIds.value : this.accountIds),
      count: (count != null ? count.value : this.count),
      offset: (offset != null ? offset.value : this.offset));
}