values property

Future<List<V>> get values

Returns all values currently in the cache.

Implementation

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