toWatchMovies property

Stream<List<Movie>> get toWatchMovies

Stream of to-watch movies from the active service.

Implementation

Stream<List<Movie>> get toWatchMovies {
  if (_isPodStorageEnabled && _podService != null) {
    return _podService!.toWatchMovies;
  }
  return _localService.toWatchMovies;
}