TuiRendererOptions constructor

const TuiRendererOptions({
  1. int fps = 60,
  2. bool altScreen = true,
  3. bool hideCursor = true,
  4. bool ansiCompress = false,
})

Creates renderer options.

All parameters have sensible defaults for fullscreen rendering.

Implementation

const TuiRendererOptions({
  this.fps = 60,
  this.altScreen = true,
  this.hideCursor = true,
  this.ansiCompress = false,
});