GeomGeoJson constructor

GeomGeoJson({
  1. required String type,
  2. GeomPoint? points,
  3. GeomLine? lines,
  4. List<GeomPolygon>? polygons,
  5. GeomMultiLine? multilines,
})

Implementation

GeomGeoJson({
  required this.type,
  this.points,
  this.lines,
  this.polygons,
  this.multilines,
});