TBarCode constructor

TBarCode({
  1. required int x,
  2. required int y,
  3. TCodeType codeType = TCodeType.code128,
  4. required int height,
  5. TShowType showType = TShowType.noShow,
  6. TRotation rotation = TRotation.rotation_0,
  7. required int cellwidth,
  8. required String content,
})

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;
}