Checks if a movie is in the to-watch list.
Future<bool> isInToWatch(Movie movie) async { final toWatch = await getToWatch(); return toWatch.any((m) => m.id == movie.id); }