PassioAdvisorResponse constructor

const PassioAdvisorResponse({
  1. List<PassioAdvisorFoodInfo>? extractedIngredients,
  2. required String markupContent,
  3. required String messageId,
  4. required String rawContent,
  5. required String threadId,
  6. List<String>? tools,
})

Constructs a PassioAdvisorResponse instance.

Implementation

const PassioAdvisorResponse({
  this.extractedIngredients,
  required this.markupContent,
  required this.messageId,
  required this.rawContent,
  required this.threadId,
  this.tools,
});