removeMovieComments method

Future<void> removeMovieComments(
  1. Movie movie
)

Removes the personal comments for a movie.

Implementation

Future<void> removeMovieComments(Movie movie) async {
  if (_isPodStorageEnabled && _podService != null) {
    await _podService!.removeMovieComments(movie);
  } else {
    await _localService.removeMovieComments(movie);
  }
}