isInToWatch method

Future<bool> isInToWatch(
  1. Movie movie
)

Checks if a movie is in the to-watch list.

Implementation

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