isInWatched method

Future<bool> isInWatched(
  1. Movie movie
)

Checks if a movie is in the watched list.

Implementation

Future<bool> isInWatched(Movie movie) async {
  if (_isPodStorageEnabled && _podService != null) {
    return _podService!.isInWatched(movie);
  }
  return _localService.isInWatched(movie);
}