removeMovieComments method

Future<void> removeMovieComments(
  1. Movie movie
)

Removes the personal comments for a movie.

Implementation

Future<void> removeMovieComments(Movie movie) async {
  await _prefs.remove('movie_comments_${movie.id}');
  notifyListeners();
}