CBox constructor
CBox({})
Implementation
CBox({
required int lineWidth,
required int topLeftX,
required int topLeftY,
required int bottomRightX,
required int bottomRightY,
}) {
_lineWidth = lineWidth;
_topLeftX = topLeftX;
_topLeftY = topLeftY;
_bottomRightX = bottomRightX;
_bottomRightY = bottomRightY;
}