QueuedCommand constructor

const QueuedCommand({
  1. required QueuedCommandValue value,
  2. required PromptInputMode mode,
  3. QueuePriority priority = QueuePriority.next,
  4. bool skipSlashCommands = false,
  5. bool isMeta = false,
  6. String? agentId,
  7. CommandOrigin? origin,
  8. Map<int, PastedContent>? pastedContents,
})

Implementation

const QueuedCommand({
  required this.value,
  required this.mode,
  this.priority = QueuePriority.next,
  this.skipSlashCommands = false,
  this.isMeta = false,
  this.agentId,
  this.origin,
  this.pastedContents,
});