fromValue static method

GhosttyMouseButton fromValue(
  1. int value
)

Implementation

static GhosttyMouseButton fromValue(int value) => switch (value) {
  0 => GHOSTTY_MOUSE_BUTTON_UNKNOWN,
  1 => GHOSTTY_MOUSE_BUTTON_LEFT,
  2 => GHOSTTY_MOUSE_BUTTON_RIGHT,
  3 => GHOSTTY_MOUSE_BUTTON_MIDDLE,
  4 => GHOSTTY_MOUSE_BUTTON_FOUR,
  5 => GHOSTTY_MOUSE_BUTTON_FIVE,
  6 => GHOSTTY_MOUSE_BUTTON_SIX,
  7 => GHOSTTY_MOUSE_BUTTON_SEVEN,
  8 => GHOSTTY_MOUSE_BUTTON_EIGHT,
  9 => GHOSTTY_MOUSE_BUTTON_NINE,
  10 => GHOSTTY_MOUSE_BUTTON_TEN,
  11 => GHOSTTY_MOUSE_BUTTON_ELEVEN,
  _ => throw ArgumentError('Unknown value for GhosttyMouseButton: $value'),
};