ChatQueuedPrompt constructor

const ChatQueuedPrompt({
  1. required int id,
  2. required String text,
  3. required List<PromptAttachment> attachments,
  4. required DateTime createdAt,
  5. bool guide = false,
})

Implementation

const ChatQueuedPrompt({
  required this.id,
  required this.text,
  required this.attachments,
  required this.createdAt,
  this.guide = false,
});