setMovieComments method
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);
}
}