watchByIds method

  1. @override
Stream<ReadListResult<T>> watchByIds(
  1. WatchByIdsOperation<T> operation
)

Opens a live stream which will yield the current matching models periodically via a ReadListResult.

Implementation

@override
Stream<ReadListResult<T>> watchByIds(WatchByIdsOperation<T> operation) =>
    _guardedSync(() => _watchByIds(operation), operation);