Creates a Continent instance from a JSON map.
factory Continent.fromJson(Map<String, dynamic> json) { return Continent( code: json['code'] as String, name: json['name'] as String, ); }