setState method
Implementation
void setState(bool state) {
_ensureAttached();
bindings.checkPhidgetError(
bindings.digitalOutputSetState(_handle!, state ? 1 : 0), "setState");
}
void setState(bool state) {
_ensureAttached();
bindings.checkPhidgetError(
bindings.digitalOutputSetState(_handle!, state ? 1 : 0), "setState");
}