echoNewlineMode property - Stdin class - dart:io library (original) (raw)
- @Since("2.18")
bool getechoNewlineMode
Whether echo newline mode is enabled on stdin.
If enabled, newlines from the terminal will be echoed even if the regularechoMode 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")
setechoNewlineMode (bool echoNewlineMode)
Implementation
@Since("2.18")
external set echoNewlineMode(bool echoNewlineMode);