copyWithWrapped method

InvestmentHoldingsGetRequestOptions copyWithWrapped({
  1. Wrapped<List<String>?>? accountIds,
})

Implementation

InvestmentHoldingsGetRequestOptions copyWithWrapped(
    {Wrapped<List<String>?>? accountIds}) {
  return InvestmentHoldingsGetRequestOptions(
      accountIds: (accountIds != null ? accountIds.value : this.accountIds));
}