GeoSerie constructor

GeoSerie({
  1. String? name,
  2. GeoSerieType? type,
  3. int? id,
  4. List<GeoPoint>? geoPoints,
  5. num? surface,
  6. GeoSerie? boundary,
  7. GeoPoint? centroid,
})

Default constructor: requires a name and a type

Implementation

GeoSerie(
    {this.name,
    this.type,
    this.id,
    this.geoPoints,
    this.surface,
    this.boundary,
    this.centroid});