fromValue static method
Implementation
static NSPressureBehavior fromValue(int value) => switch (value) {
-1 => NSPressureBehaviorUnknown,
0 => NSPressureBehaviorPrimaryDefault,
1 => NSPressureBehaviorPrimaryClick,
2 => NSPressureBehaviorPrimaryGeneric,
3 => NSPressureBehaviorPrimaryAccelerator,
5 => NSPressureBehaviorPrimaryDeepClick,
6 => NSPressureBehaviorPrimaryDeepDrag,
_ => throw ArgumentError('Unknown value for NSPressureBehavior: $value'),
};