themoviedbSearchKeyword method

Future<List<TheMovieKeyword>> themoviedbSearchKeyword(
  1. dynamic params
)

Implementation

Future<List<TheMovieKeyword>> themoviedbSearchKeyword(params) async {
  NetworkResponse response = await _api.themoviedbSearchKeyword(params);
  return response.data ?? [];
}