navigationLatency property
Navigation latency in seconds.
Implementation
double get navigationLatency {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceAreaFacility_getNavigationLatency(
_handle, errorHandler);
});
}
Implementation
set navigationLatency(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ServiceAreaFacility_setNavigationLatency(
_handle, value, errorHandler);
});
}