loadDiskCache method

void loadDiskCache(
  1. Map<String, Object?> cache
)

Load disk cache.

Implementation

void loadDiskCache(Map<String, Object?> cache) {
  _diskCache.clear();
  _diskCache.addAll(cache);
}