ProductionCountry.fromJson constructor

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

Implementation

factory ProductionCountry.fromJson(Map<String, dynamic> json) => ProductionCountry(
  iso31661: json["iso_3166_1"],
  name: json["name"],
);