GeoJsonPolygon constructor

GeoJsonPolygon({
  1. List<GeoSerie>? geoSeries,
  2. String? name,
})

Default constructor

Implementation

GeoJsonPolygon({this.geoSeries, this.name}) {
  geoSeries ??= <GeoSerie>[];
}