endPoint property

Point get endPoint

The point at the end of the arc

Implementation

Point get endPoint =>
    Point(center.x + radius * cos(endAngle), center.y + radius * sin(endAngle));