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