stdin top-level property

Stdin stdin

The standard input stream of data read by this program.

Implementation

Stdin get stdin {
  _stdin ??= _StdIOUtils._getStdioInputStream(_stdinFD);
  return _stdin;
}