Line constructor

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

Implementation

Line(
    {this.buff = 0,
    this.pathArc,
    this.start = RIGHT,
    this.end = LEFT,
    Color color = WHITE})
    : super(color: color);