echoNewlineMode property Null safety
@Since("2.18")
Whether echo newline mode is enabled on stdin.
If enabled, newlines from the terminal will be echoed even if the regular
echoMode is disabled. This mode may require lineMode
to be turned on
to have an effect.
Default depends on the parent process, but is usually disabled.
On POSIX systems this mode is the echonl
local terminal mode.
On Windows this mode cannot be set.
Implementation
@Since("2.18")
external bool get echoNewlineMode;
@Since("2.18")
Implementation
@Since("2.18")
external set echoNewlineMode(bool echoNewlineMode);