currentBearingTolerance property
Current bearing tolerance in degrees. Valid values are 0 to 180 or NaN.
Implementation
double get currentBearingTolerance {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceAreaFacility_getCurrentBearingTolerance(
_handle, errorHandler);
});
}
Implementation
set currentBearingTolerance(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ServiceAreaFacility_setCurrentBearingTolerance(
_handle, value, errorHandler);
});
}