fromValue static method
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',
),
};