uploadAvailability property

OfflineUpdateAvailability uploadAvailability

Indicates whether there are local changes to upload.

If your offline map contains local edits that can be uploaded to online feature services, this property will be OfflineUpdateAvailability.available.

If there are no local changes, or your offline map does not support syncing with feature services, this property will be OfflineUpdateAvailability.none.

Implementation

OfflineUpdateAvailability get uploadAvailability {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_OfflineMapUpdatesInfo_getUploadAvailability(
        _handle, errorHandler);
  });
  return OfflineUpdateAvailability._fromCoreValue(coreValue);
}