fromValue static method
Implementation
static GhosttyOptimizeMode fromValue(int value) => switch (value) {
0 => GHOSTTY_OPTIMIZE_DEBUG,
1 => GHOSTTY_OPTIMIZE_RELEASE_SAFE,
2 => GHOSTTY_OPTIMIZE_RELEASE_SMALL,
3 => GHOSTTY_OPTIMIZE_RELEASE_FAST,
_ => throw ArgumentError('Unknown value for GhosttyOptimizeMode: $value'),
};