mostRightPoint property

Point get mostRightPoint

Get the furthest right point of the polygon

Implementation

Point get mostRightPoint =>
    vertices.reduce((cur, next) => cur.x >= next.x ? cur : next);