operator | method

KeyModifiers operator |(
  1. KeyModifiers other
)

Combines two KeyModifier instances using a bitwise OR operation.

Implementation

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