removeData method

  1. @override
void removeData(
  1. String key
)
override

remove a cached content from cache key - the key used to store the data

Implementation

@override
void removeData(String key) {
  _expiryCache.remove(key);
  unawaited(_cacheManager.remove(key));
}