hasLiveData property

bool hasLiveData

Whether there is live data.

If true, export and identify operations will default the time extent to start time = (current server time - time interval), end time = current server time.

Implementation

bool get hasLiveData {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LayerTimeInfo_getHasLiveData(
      _handle,
      errorHandler,
    );
  });
}