fromValue static method

GhosttyStyleColorTag fromValue(
  1. int value
)

Implementation

static GhosttyStyleColorTag fromValue(int value) => switch (value) {
  0 => GHOSTTY_STYLE_COLOR_NONE,
  1 => GHOSTTY_STYLE_COLOR_PALETTE,
  2 => GHOSTTY_STYLE_COLOR_RGB,
  _ => throw ArgumentError('Unknown value for GhosttyStyleColorTag: $value'),
};