getBoxOfficeMovies method

Future<List<BoxOfficeMovie>> getBoxOfficeMovies({
  1. bool extendedFull = false,
})

Returns the top 10 grossing movies in the U.S. box office last weekend. Updated every Monday morning.

✨ Extended Info

Implementation

Future<List<BoxOfficeMovie>> getBoxOfficeMovies(
    {bool extendedFull = false}) async {
  return await _manager._getList("movies/boxoffice",
      extendedFull: extendedFull);
}