cbreak property

bool get cbreak

The cbreak option can be used to indicate that characters that correspond to a signal should still be generated. When disabling raw mode, this option is ignored. This functionality currently only works on Linux and Mac OS.

Implementation

_i2.bool get cbreak => _i3.getProperty(
      this,
      'cbreak',
    );
set cbreak (bool value)

Implementation

set cbreak(_i2.bool value) {
  _i3.setProperty(
    this,
    'cbreak',
    value,
  );
}