getCacheKeys method

Future<Iterable<String>> getCacheKeys()

returns all top-level keys in the cache

Implementation

Future<Iterable<String>> getCacheKeys() {
  return _handleSingleResponseCommand(
      (sendPort) => CacheKeysCommand(sendPort));
}