Geometry constructor
Geometry({
- String? type,
- dynamic coordinates,
Implementation
factory Geometry({
String? type,
dynamic coordinates,
}) =>
Geometry.fromJsObject(GeometryJsImpl(
type: type,
coordinates: coordinates,
));