getCacheMetadata method

Future<Map<String, dynamic>?> getCacheMetadata(
  1. CacheCategory category
)

Get cache metadata for a category.

Implementation

Future<Map<String, dynamic>?> getCacheMetadata(CacheCategory category) async {
  return await _cacheService.getCacheMetadata(category);
}