fromValue static method

GhosttyTerminalCompressionMode fromValue(
  1. int value
)

Implementation

static GhosttyTerminalCompressionMode fromValue(int value) => switch (value) {
  0 => GHOSTTY_TERMINAL_COMPRESSION_MODE_INCREMENTAL,
  1 => GHOSTTY_TERMINAL_COMPRESSION_MODE_FULL,
  2147483647 => GHOSTTY_TERMINAL_COMPRESSION_MODE_MAX_VALUE,
  _ => throw ArgumentError(
    'Unknown value for GhosttyTerminalCompressionMode: $value',
  ),
};