Geometry.fromMap constructor
Implementation
factory Geometry.fromMap(Map<String, dynamic> json) => Geometry(
coordinates: json["coordinates"] == null
? []
: List<List<num>>.from(json["coordinates"]!
.map((x) => List<num>.from(x.map((x) => x)))),
type: json["type"],
);