remainsOnline property

bool remainsOnline

True if this online only layer or table will be referenced from an offline map, false otherwise.

If this value is true, the layer or table will be available in the offline map when network connectivity is present.

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

Implementation

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