fromValue static method
Implementation
static FWL_EVENTFLAG fromValue(int value) => switch (value) {
1 => FWL_EVENTFLAG_ShiftKey,
2 => FWL_EVENTFLAG_ControlKey,
4 => FWL_EVENTFLAG_AltKey,
8 => FWL_EVENTFLAG_MetaKey,
16 => FWL_EVENTFLAG_KeyPad,
32 => FWL_EVENTFLAG_AutoRepeat,
64 => FWL_EVENTFLAG_LeftButtonDown,
128 => FWL_EVENTFLAG_MiddleButtonDown,
256 => FWL_EVENTFLAG_RightButtonDown,
_ => throw ArgumentError('Unknown value for FWL_EVENTFLAG: $value'),
};