lines property

Stream<String> get lines

The stdout of the command, one event per line, without line terminators.

\n, \r\n and a lone \r all count as terminators, so the mix of host and device line endings never reaches the caller.

Implementation

Stream<String> get lines => _lines.stream;