anyButtonPressed property
Implementation
set anyButtonPressed(bool value) {
_ensureOpen();
final out = calloc<ffi.Bool>()..value = value;
try {
_setOption(
bindings
.GhosttyMouseEncoderOption
.GHOSTTY_MOUSE_ENCODER_OPT_ANY_BUTTON_PRESSED,
out.cast(),
);
} finally {
calloc.free(out);
}
}