SearchControllerState constructor

SearchControllerState({
  1. Aggregations? aggregationData,
  2. Results? results,
  3. RequestStatus? requestStatus,
  4. dynamic error,
  5. dynamic value,
  6. List<Map>? query,
  7. dynamic dataField,
  8. int? size,
  9. int? from,
  10. dynamic fuzziness,
  11. List<String>? includeFields,
  12. List<String>? excludeFields,
  13. SortType? sortBy,
  14. Map<String, dynamic>? react,
  15. Map defaultQuery(
    1. SearchController searchController
    )?,
  16. Map customQuery(
    1. SearchController searchController
    )?,
})

Implementation

SearchControllerState({
  this.aggregationData,
  this.results,
  this.requestStatus,
  this.error,
  this.value,
  this.query,
  this.dataField,
  this.size,
  this.from,
  this.fuzziness,
  this.includeFields,
  this.excludeFields,
  this.sortBy,
  this.react,
  this.defaultQuery,
  this.customQuery,
});