InternalFindItemsGeneric<TItem extends Item> method

Future<ServiceResponseCollection<FindItemResponse<TItem>>> InternalFindItemsGeneric<TItem extends Item>(
  1. SearchFilter searchFilter,
  2. ViewBase view,
  3. Grouping? groupBy
)
Find items. The search filter. Available search filter classes include SearchFilter.IsEqualTo, SearchFilter.ContainsSubString and SearchFilter.SearchFilterCollection The view controlling the number of items returned. The group by.

Implementation

Future<ServiceResponseCollection<FindItemResponse<TItem>>>
    InternalFindItemsGeneric<TItem extends Item>(
        SearchFilter searchFilter, ViewBase view, Grouping? groupBy) {
  this.ThrowIfThisIsNew();

  return this.Service.FindItemsGeneric<TItem>(
      [this.Id],
      searchFilter,
      null,
      /* queryString */
      view,
      groupBy,
      ServiceErrorHandling.ThrowOnError);
}