cacheStorageFormat property

CacheStorageFormat cacheStorageFormat

The storage format of this tile cache.

CacheStorageFormat.unknown if an error occurs.

Implementation

CacheStorageFormat get cacheStorageFormat {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_TileCache_getCacheStorageFormat(
      _handle,
      errorHandler,
    );
  });
  return CacheStorageFormat._fromCoreValue(
    coreValue,
  );
}