staticValues static method
Returns a stream of all values. Bypasses hooks for performance.
Implementation
static Stream<dynamic> staticValues(HHPayloadI payload) async* {
final ctx = HHCtx(payload);
await for (final value in ctx.access.storeValues()) {
yield value;
}
}