watchAllFromLocal method
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();
}