Geometry.fromJson constructor
Implementation
factory Geometry.fromJson(Map<String, dynamic> json) => Geometry(
location: json["location"] == null
? null
: Location.fromJson(json["location"]),
viewport: json["viewport"] == null
? null
: Viewport.fromJson(json["viewport"]),
);