PromptRunner constructor

PromptRunner({
  1. bool hideCursor = true,
  2. EndBehavior endBehavior = EndBehavior.clear,
  3. void onBeforeCleanup()?,
  4. void onAfterCleanup()?,
})

Implementation

PromptRunner({
  this.hideCursor = true,
  this.endBehavior = EndBehavior.clear,
  this.onBeforeCleanup,
  this.onAfterCleanup,
});