fromValue static method

UIKeyModifierFlags fromValue(
  1. int value
)

Implementation

static UIKeyModifierFlags fromValue(int value) => switch (value) {
  65536 => UIKeyModifierAlphaShift,
  131072 => UIKeyModifierShift,
  262144 => UIKeyModifierControl,
  524288 => UIKeyModifierAlternate,
  1048576 => UIKeyModifierCommand,
  2097152 => UIKeyModifierNumericPad,
  _ => throw ArgumentError('Unknown value for UIKeyModifierFlags: $value'),
};