removePersonalRating method

Future<void> removePersonalRating(
  1. Movie movie
)

Removes the user's personal rating for a movie.

Implementation

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