themoviedbPersonCredits method

Future<TheMoviePersonCredit?> themoviedbPersonCredits(
  1. dynamic id,
  2. dynamic params
)

Implementation

Future<TheMoviePersonCredit?> themoviedbPersonCredits(id, params) async {
  NetworkResponse response = await _api.themoviedbPersonCredits(id, params);
  return response.data;
}