supportsOffline property
True if this layer or table supports being taken offline, false otherwise.
If this property is false and the GenerateOfflineMapParameters.onlineOnlyServicesOption is set to OnlineOnlyServicesOption.include, the OfflineCapability.remainsOnline property will 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,
);
});
}