getMovieComments method

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

Gets the personal comments for a movie.

Implementation

Future<String?> getMovieComments(Movie movie) async {
  if (_isPodStorageEnabled && _podService != null) {
    return _podService!.getMovieComments(movie);
  }
  return _localService.getMovieComments(movie);
}