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