watchObjectLazy method

  1. @override
Stream<void> watchObjectLazy(
  1. Id id, {
  2. bool fireImmediately = false,
})
override

Watch the object with id for changes.

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

Implementation

@override
Stream<void> watchObjectLazy(Id id, {bool fireImmediately = false}) {
  return _isarCollection.watchObjectLazy(
    id,
    fireImmediately: fireImmediately,
  );
}