clearAll method

void clearAll()

Implementation

void clearAll() {
  for (final image in _cache.values) {
    image.dispose();
  }
  _cache.clear();
  _loadingCache.clear();
}