watchLazy method

  1. @override
Stream<void> watchLazy({
  1. bool fireImmediately = false,
})
override

Watch the collection for changes.

If fireImmediately is true, an event will be fired immediately.

Implementation

@override
Stream<void> watchLazy({bool fireImmediately = false}) {
  return _isarCollection.watchLazy(fireImmediately: fireImmediately);
}