stream property

Stream<String> stream

Returns a combined stream including stdout and stderr. You control whether stderr and/or stdout are inserted into the stream when you call stream(includeStderr: true, includeStdout)

Implementation

Stream<String> get stream =>
    StreamGroup.merge([_stdoutController.stream, _stderrController.stream]);