fromValue static method

GhosttyPasteSource fromValue(
  1. int value
)

Implementation

static GhosttyPasteSource fromValue(int value) => switch (value) {
  0 => GHOSTTY_PASTE_SOURCE_CLIPBOARD,
  1 => GHOSTTY_PASTE_SOURCE_TEXT,
  2147483647 => GHOSTTY_PASTE_SOURCE_MAX_VALUE,
  _ => throw ArgumentError('Unknown value for GhosttyPasteSource: $value'),
};