addToWatched method
- Movie movie
Adds a movie to the watched list.
Implementation
Future<void> addToWatched(Movie movie) async {
final watched = await getWatched();
if (!watched.any((m) => m.id == movie.id)) {
watched.add(movie);
await _saveWatched(watched);
_watchedController.add(watched);
}
}