points property

List<Point> points
getter/setter pair

Ring specifying the area.

Example:

// Get polygon points
List<Point> points = polygon.points;
print("Polygon points: ${points.map((p) => "(${p.x}, ${p.y})").join(", ")}");

Implementation

List<Point> points;