deserialize static method
Implementation
static GeometryObject deserialize(Map<String, dynamic> json) {
return json['type'] == 'GeometryCollection' ||
json['type'] == GeoJSONObjectType.geometryCollection
? GeometryCollection.fromJson(json)
: GeometryType.deserialize(json);
}