Creates a Polygon from JSON data.
factory Polygon.fromJson(Map<String, dynamic> json) { final coordinates = json['coordinates']; return Polygon(_toLatLngListList(coordinates)); }