getKeys abstract method

Future<Stream<K>> getKeys({
  1. String? regex,
})

Streams the keys, optionally filtered by regex. The returned Future completes once the backend has accepted the request — setup failures (store not open, invalid regex) reject the Future eagerly rather than surfacing mid-stream; the Stream then yields the matching keys.

Implementation

Future<Stream<K>> getKeys({String? regex});