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