fromValue static method
Implementation
static NSEventGestureAxis fromValue(int value) => switch (value) {
0 => NSEventGestureAxisNone,
1 => NSEventGestureAxisHorizontal,
2 => NSEventGestureAxisVertical,
_ => throw ArgumentError('Unknown value for NSEventGestureAxis: $value'),
};