getMinVoltage method
Implementation
double getMinVoltage() {
final pVoltage = calloc<Double>();
try {
bindings.voltageOutputGetMinVoltage(_handle!, pVoltage);
return pVoltage.value;
} catch (e) {
throw PhidgetException('An error occurred getting the minimum voltage: $e');
} finally {
calloc.free(pVoltage);
}
}