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 {
  if (_isPodStorageEnabled && _podService != null) {
    await _podService!.setMovieComments(movie, comments);
  } else {
    await _localService.setMovieComments(movie, comments);
  }
}