getKeys abstract method

Future<List<String>> getKeys({
  1. int? limit,
  2. int? offset,
})

Returns a list of all keys in the cache.

Throws a CacheException if there is an error retrieving the keys. The limit and offset parameters can be used to paginate the results.

Implementation

Future<List<String>> getKeys({int? limit, int? offset});