watchAll method

Stream<List<T>> watchAll({
  1. dynamic filter,
})

Implementation

Stream<List<T>> watchAll({dynamic filter}) {
  // Implement a method to watch for changes in the local repository
  // This will depend on how your LocalRepository is implemented
  // For now, we'll leave it as a TODO
  throw UnimplementedError('watchAll method needs to be implemented');
}