Sets the personal comments for a movie.
Future<void> setMovieComments(Movie movie, String comments) async { await _prefs.setString('movie_comments_${movie.id}', comments); notifyListeners(); }