GeoJsonDTO constructor

GeoJsonDTO({
  1. BoundingBoxDTO? bbox,
  2. CrsDTO? crs,
  3. required GeomGeoJson geom,
})

Constructeur principal.

Implementation

GeoJsonDTO({
  this.bbox,
  this.crs,
  required this.geom,
});