ExtrasCountry.fromMap constructor
Implementation
factory ExtrasCountry.fromMap(Map<String, dynamic> json) => ExtrasCountry(
regions: json["regions"] == null ? [] : List<PurpleRegion>.from(json["regions"]!.map((x) => PurpleRegion.fromMap(x))),
id: json["id"],
name: json["name"],
code: json["code"],
continent: json["continent"],
);