toLineString method Null safety
Uses the Polygon's coordinates to make a LineString. Ignores any holes in the polygon.
Implementation
LineString toLineString() {
return LineString(coordinates.first.coordinates);
}
Uses the Polygon's coordinates to make a LineString. Ignores any holes in the polygon.
LineString toLineString() {
return LineString(coordinates.first.coordinates);
}