stdout property

Stream<List<int>> stdout

The script's standard output stream, typically used to emit data it produces.

Implementation

Stream<List<int>> get stdout {
  _stdoutAccessed = true;
  return _stdout;
}