setMovieComments method

Future<void> setMovieComments(
  1. Movie movie,
  2. String comments
)

Sets the personal comments for a movie.

Implementation

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