appendDebugOutput method
- String text
Injects decoded terminal output directly into the VT model.
This is primarily intended for demos and tests that need to simulate process output without a live subprocess.
Implementation
void appendDebugOutput(String text) {
_ingestBytes(utf8.encode(text), decodedText: text);
}