fromValue static method

GhosttyCellContentTag fromValue(
  1. int value
)

Implementation

static GhosttyCellContentTag fromValue(int value) => switch (value) {
  0 => GHOSTTY_CELL_CONTENT_CODEPOINT,
  1 => GHOSTTY_CELL_CONTENT_CODEPOINT_GRAPHEME,
  2 => GHOSTTY_CELL_CONTENT_BG_COLOR_PALETTE,
  3 => GHOSTTY_CELL_CONTENT_BG_COLOR_RGB,
  _ => throw ArgumentError('Unknown value for GhosttyCellContentTag: $value'),
};