modifiers property

num get modifiers

Gets or sets the modifier keys that were used with the mouse or keyboard event. The number will be a combination of flags representing Control, Shift, Alt or Meta.

Implementation

_i2.num get modifiers => _i4.getProperty(
      this,
      'modifiers',
    );
set modifiers (num value)

Implementation

set modifiers(_i2.num value) {
  _i4.setProperty(
    this,
    'modifiers',
    value,
  );
}