fromValue static method
Implementation
static NSEventPhase fromValue(int value) => switch (value) {
0 => NSEventPhaseNone,
1 => NSEventPhaseBegan,
2 => NSEventPhaseStationary,
4 => NSEventPhaseChanged,
8 => NSEventPhaseEnded,
16 => NSEventPhaseCancelled,
32 => NSEventPhaseMayBegin,
_ => throw ArgumentError('Unknown value for NSEventPhase: $value'),
};