CubicArc constructor
Arc line.
start
point of arc.
location
end point of arc.
size
ratio of arc. typically 0 - 1.
Implementation
CubicArc({
required Offset start,
required this.location,
this.size = 1.0,
}) : super(start.dx, start.dy);
Arc line.
start
point of arc.
location
end point of arc.
size
ratio of arc. typically 0 - 1.
CubicArc({
required Offset start,
required this.location,
this.size = 1.0,
}) : super(start.dx, start.dy);