stderr property

Stream<List<int>> stderr

The script's standard error stream, typically used to emit error messages and diagnostics.

Implementation

Stream<List<int>> get stderr {
  _stderrAccessed = true;
  return _stderr;
}