evict method

bool evict(
  1. Object key
)

Removes single gif from the cache.

Implementation

bool evict(Object key) => caches.remove(key) != null ? true : false;