remove method

  1. @override
void remove(
  1. String name
)
override

Removes a Cache from this CacheManager if present

  • name: The name of the cache

Implementation

@override
void remove(String name) {
  _caches.remove(name);
}