start method

void start()

Starts the terminal session.

Implementation

void start() {
  if (_active) return;
  _active = true;
  if (rawMode) _termState = TerminalControl.enterRaw();
  if (hideCursor) TerminalControl.hideCursor();
}