kittyKeyboardFlags property

int get kittyKeyboardFlags

Implementation

int get kittyKeyboardFlags {
  final out = calloc<ffi.Uint8>();
  try {
    _checkResult(
      bindings.ghostty_terminal_get(
        _handle,
        bindings
            .GhosttyTerminalData
            .GHOSTTY_TERMINAL_DATA_KITTY_KEYBOARD_FLAGS,
        out.cast(),
      ),
      'ghostty_terminal_get',
    );
    return out.value;
  } finally {
    calloc.free(out);
  }
}