clone method

Polygon clone()

Implementation

Polygon clone() {
  return Polygon(vertices.map((v) => v.clone()).toList(),shared);
}