addToWatched method

  1. @override
Future<void> addToWatched(
  1. Movie movie
)
override

Adds a movie to the watched list.

Implementation

@override
Future<void> addToWatched(Movie movie) async {
  await _manager.addToWatched(movie);
  _invalidateWatchedCache();
}