mostLeftPoint property

Point get mostLeftPoint

Get the furthest left point of the polygon

Implementation

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