getMovieReleases method

Future<List<MovieRelease>> getMovieReleases(
  1. String id,
  2. String country
)

Returns all releases for a movie including country, certification, release date, release type, and note.

The release type can be set to unknown, premiere, limited, theatrical, digital, physical, or tv. The note might have optional info such as the film festival name for a premiere release or Blu-ray specs for a physical release. We pull this info from TMDB.

id - Trakt ID, Trakt slug, or IMDB ID country - 2 character country code

Implementation

Future<List<MovieRelease>> getMovieReleases(String id, String country) async {
  return await _manager
      ._getList<MovieRelease>("movies/$id/releases/$country");
}