navigationLatency property

double navigationLatency

Navigation latency in seconds.

Implementation

double get navigationLatency {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Stop_getNavigationLatency(
      _handle,
      errorHandler,
    );
  });
}
void navigationLatency=(double value)

Implementation

set navigationLatency(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Stop_setNavigationLatency(
      _handle,
      value,
      errorHandler,
    );
  });
}