GeoShape constructor

GeoShape({
  1. GeoShapeCentroid? centroid,
  2. int? elevation,
  3. Polygon? polygon,
})

Returns a new GeoShape instance.

Implementation

GeoShape({
  this.centroid,
  this.elevation,
  this.polygon,
});