clone method

MFPolyline clone()

Creates a new MFPolyline object whose values are the same as this instance.

Implementation

MFPolyline clone() {
  return copyWith(
    pointsParam: List<MFLatLng>.of(points),
  );
}