View constructor

const View({
  1. required String content,
  2. Cmd? onMouse(
    1. MouseMsg msg
    )?,
  3. Cursor? cursor,
  4. Color? backgroundColor,
  5. Color? foregroundColor,
  6. String? windowTitle,
  7. TerminalProgressBar? progressBar,
  8. bool? altScreen,
  9. bool? reportFocus,
  10. bool? bracketedPaste,
  11. MouseMode? mouseMode,
  12. KeyboardEnhancements? keyboardEnhancements,
})

Implementation

const View({
  required this.content,
  this.onMouse,
  this.cursor,
  this.backgroundColor,
  this.foregroundColor,
  this.windowTitle,
  this.progressBar,
  this.altScreen,
  this.reportFocus,
  this.bracketedPaste,
  this.mouseMode,
  this.keyboardEnhancements,
});