getPersonalRating method

Future<double?> getPersonalRating(
  1. Movie movie
)

Gets the user's personal rating for a movie.

Implementation

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