CBar constructor
CBar({})
Implementation
CBar({
required int x,
required int y,
required String content,
required int lineWidth,
required int height,
CCodeType codeType = CCodeType.code128,
CCodeRotation codeRotation = CCodeRotation.rotation_0,
}) {
_x = x;
_y = y;
_content = content;
_lineWidth = lineWidth;
_height = height;
_codeType = codeType;
_codeRotation = codeRotation;
}