Geometry.fromJson constructor
Creates a Geometry from JSON data.
Implementation
factory Geometry.fromJson(Map<String, dynamic> json) {
return Geometry(
location: Location.fromJson(json["location"]),
viewport: Viewport.fromJson(json["viewport"]),
);
}