hasErrors property

bool hasErrors

Indicates that there is at least one layer or table that could not be taken offline.

To determine which layers or tables could not be taken offline examine the DownloadPreplannedOfflineMapResult.layerErrors and the DownloadPreplannedOfflineMapResult.tableErrors, respectively.

Implementation

bool get hasErrors {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_DownloadPreplannedOfflineMapResult_getHasErrors(
        _handle, errorHandler);
  });
}