fromValue static method
- int value
Implementation
static GhosttyResult fromValue(int value) => switch (value) {
0 => GHOSTTY_SUCCESS,
-1 => GHOSTTY_OUT_OF_MEMORY,
-2 => GHOSTTY_INVALID_VALUE,
-3 => GHOSTTY_OUT_OF_SPACE,
_ => throw ArgumentError('Unknown value for GhosttyResult: $value'),
};