writeRaw static method

Cmd writeRaw(
  1. String data
)

A command that writes raw bytes/escape sequences directly to the terminal.

Implementation

static Cmd writeRaw(String data) {
  return Cmd(() async => WriteRawMsg(data));
}