Writes text to the terminal without a trailing newline.
@override void write(String text) { if (text.isEmpty) return; backend.writeRaw(text); }