getMovieComments method

Future<String?> getMovieComments(
  1. Movie movie
)

Gets the personal comments for a movie.

Implementation

Future<String?> getMovieComments(Movie movie) async {
  return _prefs.getString('movie_comments_${movie.id}');
}