getMaxPositionChangeTrigger method
Implementation
int getMaxPositionChangeTrigger() {
final pTrigger = calloc<Int32>();
try {
bindings.encoderGetMaxPositionChangeTrigger(_handle!, pTrigger);
return pTrigger.value;
} catch (e) {
throw PhidgetException('An error occurred getting the maximum position change trigger');
} finally {
calloc.free(pTrigger);
}
}