Sets all points in the list to specific values.
x
y
void setAll(int x, int y) { forEach((point) { point.x = x; point.y = y; }); }