outerArcStart property

Offset outerArcStart

when drawing a donut in one stroke, starting from the outer perimeter, this is the starting point

Implementation

Offset get outerArcStart {
  double x = radiusEnd * cos(angleStart) + center.dx;
  double y = radiusEnd * sin(angleStart) + center.dy;
  return Offset(x,y);
}