PromptAbortedException constructor

const PromptAbortedException({
  1. required PromptExitTrigger trigger,
  2. KeyEvent? event,
  3. String message = 'Prompt runner aborted.',
})

Creates a new PromptAbortedException.

Implementation

const PromptAbortedException({
  required this.trigger,
  this.event,
  this.message = 'Prompt runner aborted.',
});