Geometry constructor

Geometry({
  1. BoundingBox? boundingBox,
  2. List<Point>? polygon,
})

Implementation

Geometry({
  this.boundingBox,
  this.polygon,
});