fromValue static method

GhosttyKittyImageFormat fromValue(
  1. int value
)

Implementation

static GhosttyKittyImageFormat fromValue(int value) => switch (value) {
  0 => GHOSTTY_KITTY_IMAGE_FORMAT_RGB,
  1 => GHOSTTY_KITTY_IMAGE_FORMAT_RGBA,
  2 => GHOSTTY_KITTY_IMAGE_FORMAT_PNG,
  3 => GHOSTTY_KITTY_IMAGE_FORMAT_GRAY_ALPHA,
  4 => GHOSTTY_KITTY_IMAGE_FORMAT_GRAY,
  2147483647 => GHOSTTY_KITTY_IMAGE_FORMAT_MAX_VALUE,
  _ => throw ArgumentError(
    'Unknown value for GhosttyKittyImageFormat: $value',
  ),
};