terminalOutput property
String
get
terminalOutput
Raw terminal output captured by the mock terminal.
This includes all writes emitted by the renderer, not just the latest canonical view. Harness analyzers use this for output hygiene checks such as synchronized-output and flicker detection.
Implementation
String get terminalOutput {
_ensureRunning();
return _terminal!.allOutput;
}