GeoJSONPolygon constructor

GeoJSONPolygon(
  1. List<List<List<double>>> coordinates
)

The constructor for the coordinates member

Implementation

GeoJSONPolygon(this.coordinates)
    : assert(coordinates.isNotEmpty,
          'The coordinates MUST be one or more elements');