SearchResponse constructor

SearchResponse({
  1. ResponseDebugInfo? debugInfo,
  2. ErrorInfo? errorInfo,
  3. List<FacetResult>? facetResults,
  4. bool? hasMoreResults,
  5. QueryInterpretation? queryInterpretation,
  6. String? resultCountEstimate,
  7. String? resultCountExact,
  8. ResultCounts? resultCounts,
  9. List<SearchResult>? results,
  10. List<SpellResult>? spellResults,
  11. List<StructuredResult>? structuredResults,
})

Implementation

SearchResponse({
  this.debugInfo,
  this.errorInfo,
  this.facetResults,
  this.hasMoreResults,
  this.queryInterpretation,
  this.resultCountEstimate,
  this.resultCountExact,
  this.resultCounts,
  this.results,
  this.spellResults,
  this.structuredResults,
});