fromValue static method

NSPressureBehavior fromValue(
  1. int value
)

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'),
};