refreshMovieList method

Future<Map<String, dynamic>?> refreshMovieList(
  1. String movieListId
)

Forces a refresh of a specific MovieList from POD.

Implementation

Future<Map<String, dynamic>?> refreshMovieList(String movieListId) async {
  return await getMovieList(movieListId, forceRefresh: true);
}