documents method

Future<List<String>> documents()

Retrieves a list of all cache keys.

Implementation

Future<List<String>> documents() async {
  return _store.keys.toList();
}