echoMode property

  1. @override
bool get echoMode
override

Whether input characters are echoed to output.

In raw mode, this should be false to prevent double-printing.

Implementation

@override
bool get echoMode {
  _calls.add('input.echoMode.get');
  return _echoMode;
}
  1. @override
set echoMode (bool value)
override

Sets the echo mode.

Implementation

@override
set echoMode(bool value) {
  _calls.add('input.echoMode.set');
  _echoMode = value;
}