clone method

Polygon clone()

Implementation

Polygon clone() {
  return updateCopy(
    points: List<LatLng>.of(points),
    holes: List<List<LatLng>>.of(holes),
    strokePattern: List<PatternItem>.of(strokePattern),
  );
}