fromValue static method

GhosttySizeReportStyle fromValue(
  1. int value
)

Implementation

static GhosttySizeReportStyle fromValue(int value) => switch (value) {
  0 => GHOSTTY_SIZE_REPORT_MODE_2048,
  1 => GHOSTTY_SIZE_REPORT_CSI_14_T,
  2 => GHOSTTY_SIZE_REPORT_CSI_16_T,
  3 => GHOSTTY_SIZE_REPORT_CSI_18_T,
  _ => throw ArgumentError(
    'Unknown value for GhosttySizeReportStyle: $value',
  ),
};