write method

void write(
  1. String text
)

Writes text to the terminal at the current cursor location without appending a newline character.

Implementation

void write(String text) {
  _console.write(text);
}