operator & method

KeyModifiers operator &(
  1. KeyModifiers other
)

Combines two KeyModifier instances using a bitwise AND operation.

Implementation

KeyModifiers operator &(KeyModifiers other) => KeyModifiers._(value & other.value);