isMetaPressed property

bool isMetaPressed

Returns whether the meta key is currently pressed. On macos, this is the command key. On windows, this is the windows key.

Implementation

bool get isMetaPressed {
  return _lastEvent?.rawEvent.isMetaPressed ?? false;
}