TerminalState constructor

const TerminalState({
  1. required bool rawModeEnabled,
  2. required bool altScreenEnabled,
  3. required bool cursorHidden,
  4. required bool mouseEnabled,
  5. required bool bracketedPasteEnabled,
})

Implementation

const TerminalState({
  required this.rawModeEnabled,
  required this.altScreenEnabled,
  required this.cursorHidden,
  required this.mouseEnabled,
  required this.bracketedPasteEnabled,
});