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