clear method

  1. @override
SimpleCache<K, V> clear()
override

remove all the entry inside the cache

Implementation

@override
SimpleCache<K, V> clear() {
  _internalStorage.clear();
  return this;
}