Feature constructor

Feature({
  1. List<num>? bbox,
  2. String? type,
  3. Properties? properties,
  4. Geometry? geometry,
})

Implementation

Feature({
  this.bbox,
  this.type,
  this.properties,
  this.geometry,
});