up property

bool get up

Gets or sets whether the InputEvent represents a mouse-up or a key-up event. The default value is false.

Implementation

_i2.bool get up => _i4.getProperty(
      this,
      'up',
    );
set up (bool value)

Implementation

set up(_i2.bool value) {
  _i4.setProperty(
    this,
    'up',
    value,
  );
}