watchObjectLazy method
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,
);
}