keys property

Future<List<K>> get keys

Returns all keys currently in the cache.

Implementation

Future<List<K>> get keys async {
  return await _storage.keys;
}