raw_mode property
Returns whether the terminal is in raw mode.
There are a series of flags applied to a UNIX-like terminal that together constitute 'raw mode'. These flags turn off echoing of character input, processing of input signals like Ctrl+C, and output processing, as well as buffering of input until a full line is entered.
Implementation
@override
bool get raw_mode {
return _is_raw_mode;
}