Geometry constructor

Geometry({
  1. required Location location,
  2. String? locationType,
  3. Bounds? viewport,
  4. Bounds? bounds,
})

Implementation

Geometry({
  required this.location,
  this.locationType,
  this.viewport,
  this.bounds,
});