Vector constructor

Vector({
  1. Vector3 start = ORIGIN,
  2. Vector3 end = RIGHT,
  3. double buff = 0,
  4. double? pathArc,
  5. Color color = WHITE,
})

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