AIAssistantCardReceivedEvent constructor

AIAssistantCardReceivedEvent({
  1. String? streamMessageId,
  2. int? runId,
  3. String? threadId,
  4. String? cardId,
  5. Map<String, dynamic>? card,
  6. int? id,
  7. String? type,
  8. String? conversationId,
  9. String? parentId,
  10. Map<String, dynamic>? additionalProperties,
})

Implementation

AIAssistantCardReceivedEvent({
  this.streamMessageId,
  this.runId,
  this.threadId,
  this.cardId,
  this.card,
  int? id,
  String? type,
  String? conversationId,
  String? parentId,
  Map<String, dynamic>? additionalProperties,
}) : super(
        id: id,
        type: type,
        conversationId: conversationId,
        parentId: parentId,
        additionalProperties: additionalProperties,
      );