removeCachedGif method

bool removeCachedGif(
  1. String key
)

Removes single gif from the cache.

Implementation

bool removeCachedGif(String key) =>
    _caches.remove(key) != null ? true : false;