supportsOffline property

bool supportsOffline

Indicates if this layer or table supports being taken offline.

Note that if this property is false and the GenerateOfflineMapParameters.onlineOnlyServicesOption is set to OnlineOnlyServicesOption.include, the OfflineCapability.remainsOnline property may indicate that the layer or table will remain online and be referenced by the offline map.

Implementation

bool get supportsOffline {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_OfflineCapability_getSupportsOffline(
        _handle, errorHandler);
  });
}