QueryResult constructor

QueryResult({
  1. List<FacetResult>? facetResults,
  2. String? queryId,
  3. List<QueryResultItem>? resultItems,
  4. int? totalNumberOfResults,
})

Implementation

QueryResult({
  this.facetResults,
  this.queryId,
  this.resultItems,
  this.totalNumberOfResults,
});