snapshots method
Implementation
@override
Stream<InAppQuerySnapshot> snapshots() {
final n = _db._addNotifier(path);
Future.delayed(const Duration(seconds: 1)).whenComplete(_notify);
return Stream.multi((c) {
void update() => get().then(c.add);
n.addListener(update);
c.onCancel = () => n.removeListener(update);
});
}