TmdbService constructor

TmdbService(
  1. String apiKey
)

Instanciate TmdbService using TMDB API Key (v3 auth)

Implementation

TmdbService(String apiKey)
    : _movie = MovieService(apiKey),
      _tv = TvService(apiKey),
      super(apiKey);