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