remove method
Removes the item with the given key from the cache
Implementation
void remove(String key) {
_cache?.removeWhere((element) => element.key == key);
}
Removes the item with the given key from the cache
void remove(String key) {
_cache?.removeWhere((element) => element.key == key);
}