arcToPoint method

void arcToPoint(
  1. Offset arcEnd, {
  2. Radius radius = Radius.zero,
  3. double rotation = 0.0,
  4. bool largeArc = false,
  5. bool clockwise = true,
})

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,
  );
}