fromValue static method

Implementation

static UIContextMenuConfigurationElementOrder fromValue(int value) => switch (value) {
  0 => UIContextMenuConfigurationElementOrderAutomatic,
  1 => UIContextMenuConfigurationElementOrderPriority,
  2 => UIContextMenuConfigurationElementOrderFixed,
  _ => throw ArgumentError('Unknown value for UIContextMenuConfigurationElementOrder: $value'),
};