fromValue static method

GhosttyKittyImageCompression fromValue(
  1. int value
)

Implementation

static GhosttyKittyImageCompression fromValue(int value) => switch (value) {
  0 => GHOSTTY_KITTY_IMAGE_COMPRESSION_NONE,
  1 => GHOSTTY_KITTY_IMAGE_COMPRESSION_ZLIB_DEFLATE,
  2147483647 => GHOSTTY_KITTY_IMAGE_COMPRESSION_MAX_VALUE,
  _ => throw ArgumentError(
    'Unknown value for GhosttyKittyImageCompression: $value',
  ),
};