Point.from constructor

Point.from(
  1. Point other
)

Implementation

Point.from(Point other)
    : x = other.x,
      y = other.y;