getchar method

int getchar()

Reads a character from stdin.

Implementation

int getchar() {
  final charCode = stdioReadByteSync();
  return charCode;
}