getIsOpen method
Implementation
bool getIsOpen() {
final pIsOpen = calloc<Int32>();
try {
bindings.phidgetGetIsOpen(_internalHandle!, pIsOpen);
return pIsOpen.value == 1;
} catch (e) {
throw PhidgetException(
"An error occurred checking if phidget is open $e");
} finally {
calloc.free(pIsOpen);
}
}