isInWatched method

Future<bool> isInWatched(
  1. Movie movie
)

Checks if a movie is in the watched list.

Implementation

Future<bool> isInWatched(Movie movie) async {
  final watched = await getWatched();
  return watched.any((m) => m.id == movie.id);
}