TBarCode constructor
TBarCode({})
Implementation
TBarCode({
required int x,
required int y,
TCodeType codeType = TCodeType.code128,
required int height,
TShowType showType = TShowType.noShow,
TRotation rotation = TRotation.rotation_0,
required int cellwidth,
required String content,
}) {
_x = x;
_y = y;
_codeType = codeType;
_height = height;
_showType = showType;
_rotation = rotation;
_cellwidth = cellwidth;
_content = content;
}