end property

  1. @override
Offset end
override

gets the end point of the path element

Implementation

@override
Offset get end => relative
    ? Offset(startPoint.dx + arcEnd.dx, startPoint.dy + arcEnd.dy)
    : Offset(arcEnd.dx, arcEnd.dy);