BoughtTogetherQuery constructor

const BoughtTogetherQuery({
  1. required String indexName,
  2. required double threshold,
  3. int? maxRecommendations,
  4. SearchParams? queryParameters,
  5. required FbtModel model,
  6. required String objectID,
})

Returns a new BoughtTogetherQuery instance.

Implementation

const BoughtTogetherQuery({
  required this.indexName,
  required this.threshold,
  this.maxRecommendations,
  this.queryParameters,
  required this.model,
  required this.objectID,
});