Returns all values currently in the cache.
Future<List<V>> get values async { final entries = await _storage.values; return entries.map((entry) => entry.value).toList(); }