keys method

Stream<String> keys()

Returns a stream of all keys. Bypasses hooks for performance.

Implementation

Stream<String> keys() async* {
  final ctx = HHCtx(HHPayload(env: config.env));
  await for (final key in ctx.access.storeKeys()) {
    yield key;
  }
}