RelativeArcToPoint constructor

const RelativeArcToPoint(
  1. double x,
  2. double y, {
  3. required Radius radius,
  4. required double rotation,
  5. required bool largeArc,
  6. required bool clockwise,
})

Implementation

const RelativeArcToPoint(
  this.x,
  this.y, {
  required this.radius,
  required this.rotation,
  required this.largeArc,
  required this.clockwise,
});