TheMovieDetailProductionCompanies.fromJson constructor

TheMovieDetailProductionCompanies.fromJson(
  1. Map<String, dynamic> json
)

Implementation

TheMovieDetailProductionCompanies.fromJson(Map<String, dynamic> json) {
  id = json["id"];
  logoPath = json["logo_path"];
  name = json["name"];
  originCountry = json["origin_country"];
}