altKey property

bool? get altKey

Whether or not the ALT key is pressed.

Implementation

bool? get altKey => _wrapped.altKey;
set altKey (bool? v)

Implementation

set altKey(bool? v) {
  _wrapped.altKey = v;
}