arcToPoint method
void
arcToPoint(})
Implementation
void arcToPoint(
Offset arcEnd, {
Radius radius = Radius.zero,
double rotation = 0.0,
bool largeArc = false,
bool clockwise = true,
}) {
steps.add(ArcToPoint(arcEnd, radius, rotation, largeArc, clockwise));
path.arcToPoint(
arcEnd,
radius: radius,
rotation: rotation,
largeArc: largeArc,
clockwise: clockwise,
);
}