Geometry constructor

Geometry({
  1. GeometryType? type,
  2. List<double>? coordinates,
})

Implementation

Geometry({
  this.type,
  this.coordinates,
});