lineMode property Null safety

bool lineMode

Whether line mode is enabled on stdin.

If enabled, characters are delayed until a newline character is entered. If disabled, characters will be available as typed.

Default depends on the parent process, but is usually enabled.

On Windows this mode can only be disabled if echoMode is disabled as well.

Implementation

external bool get lineMode;
void lineMode=(bool lineMode)

Implementation

external set lineMode(bool lineMode);