fromValue static method

GhosttyOptimizeMode fromValue(
  1. int value
)

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