fromValue static method
- int value
Implementation
static GhosttyTerminalScrollViewportTag fromValue(int value) =>
switch (value) {
0 => GHOSTTY_SCROLL_VIEWPORT_TOP,
1 => GHOSTTY_SCROLL_VIEWPORT_BOTTOM,
2 => GHOSTTY_SCROLL_VIEWPORT_DELTA,
_ => throw ArgumentError(
'Unknown value for GhosttyTerminalScrollViewportTag: $value',
),
};