copyWith method

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

Implementation

InvestmentHoldingsGetRequestOptions copyWith({List<String>? accountIds}) {
  return InvestmentHoldingsGetRequestOptions(
      accountIds: accountIds ?? this.accountIds);
}