Stream<String> readStdinText()

Read raw text from stdin.

Source

Stream<String> readStdinText() {
  return const Utf8Decoder().bind(stdin);
}