Feature<T extends GeometryObject> constructor

Feature<T extends GeometryObject>({
  1. BBox? bbox,
  2. dynamic id,
  3. Map<String, dynamic>? properties = const {},
  4. T? geometry,
  5. Map<String, dynamic> fields = const {},
})

Implementation

Feature({
  BBox? bbox,
  this.id,
  this.properties = const {},
  this.geometry,
  this.fields = const {},
}) : super.withType(GeoJSONObjectType.feature, bbox: bbox);