Geometry.fromJson constructor
Implementation
factory Geometry.fromJson(Map<String, dynamic> json) {
return Geometry(
location: json['location'] != null
? Location.fromJson(json['location'] as Map<String, dynamic>)
: null,
);
}