Checks if a movie is in the watched list.
Future<bool> isInWatched(Movie movie) async { final watched = await getWatched(); return watched.any((m) => m.id == movie.id); }