down property

bool down

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

Implementation

_i2.bool get down => _i4.getProperty(
      this,
      'down',
    );
void down=(bool value)

Implementation

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