TheMoviePersonProfiles.fromJson constructor

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

Implementation

TheMoviePersonProfiles.fromJson(Map<String, dynamic> json) {
  aspectRatio = json["aspect_ratio"];
  filePath = json["file_path"];
  height = json["height"];
  iso6391 = json["iso_639_1"];
  voteAverage = json["vote_average"];
  voteCount = json["vote_count"];
  width = json["width"];
}