LineShape constructor
LineShape({})
Implementation
LineShape({
double length = 150,
double width = 4,
super.location,
super.color,
super.zIndex,
this.style = PaintingStyle.stroke,
super.reactSize,
}) {
_endOffset = location.translate(length, 0);
super.size = Size(length, width);
}