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_Stop_getCurrentBearingTolerance(
_handle,
errorHandler,
);
});
}
Implementation
set currentBearingTolerance(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Stop_setCurrentBearingTolerance(
_handle,
value,
errorHandler,
);
});
}