bottomPoint property

Point get bottomPoint

Get the furthest bottom point of the polygon

Implementation

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