sendRaw method

void sendRaw(
  1. List<int> bytes
)

Relays raw bytes to the session — used by the host for passthrough input (every keystroke while a program owns the terminal).

Implementation

void sendRaw(List<int> bytes) {
  if (_ended) return;
  _session.writeStdin(bytes);
}