getMaxFailsafeTime method
Implementation
int getMaxFailsafeTime() {
final pTime = calloc<Int32>();
try {
bindings.voltageOutputGetMaxFailsafeTime(_handle!, pTime);
return pTime.value;
} catch (e) {
throw PhidgetException('An error occurred getting the maximum failsafe time: $e');
} finally {
calloc.free(pTime);
}
}