Vector constructor
Vector({})
Implementation
Vector({
Vector3 start = ORIGIN,
Vector3 end = RIGHT,
double buff = 0,
double? pathArc,
Color color = WHITE,
}) : super(
start: start,
end: end,
buff: buff,
pathArc: pathArc,
color: color,
);