stdout property
The standard output stream of the process as aStream.
NOTE:stdin,stdout, andstderr are implemented using pipes betweenthe parent process and the spawned subprocess. These pipes have limitedcapacity. If the subprocess writes to stderr or stdout in excess of thatlimit without the output being read, the subprocess blocks waiting forthe pipe buffer to accept more data. For example:
import 'dart:io';main() async { var process = await Process.start('cat', ['largefile.txt']); // The following await statement will never complete because the // subprocess never exits since it is blocked waiting for its // stdout to be read. await process.stderr.forEach(print);}Implementation
Stream<List<int>> get stdout;