gets method

String? gets()

Reads a line from stdin into a string.

Implementation

String? gets() {
  return stdioReadLineSync();
}