remainsOnline property

bool remainsOnline

Indicates if this online only layer or table will be referenced from an offline map.

This relates to the GenerateOfflineMapParameters.onlineOnlyServicesOption property. If GenerateOfflineMapParameters.onlineOnlyServicesOption is set to OnlineOnlyServicesOption.exclude, this property will always be false. If GenerateOfflineMapParameters.onlineOnlyServicesOption is set to OnlineOnlyServicesOption.include, this property may be true for layers that cannot be taken offline.

Implementation

bool get remainsOnline {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_OfflineCapability_getRemainsOnline(
        _handle, errorHandler);
  });
}