meta property
bool
get
meta
Gets or sets whether the meta key is being held down. This is true if the key was pressed at the time of the event.
Implementation
_i2.bool get meta => _i4.getProperty(
this,
'meta',
);
set
meta
(bool value)
Implementation
set meta(_i2.bool value) {
_i4.setProperty(
this,
'meta',
value,
);
}