watchAllFromLocal method

  1. @protected
Stream<List<T>> watchAllFromLocal({
  1. QueryParams? queryParams,
})
inherited

Watches all items from the local database.

This is a placeholder that should be overridden by concrete repository. queryParams Query parameters for filtering, sorting, and pagination.

Implementation

@protected
Stream<List<T>> watchAllFromLocal({QueryParams? queryParams}) {
  log.warning('watchAllFromLocal() not implemented for $T');
  return Stream<List<T>>.empty();
}