CBar constructor

CBar({
  1. required int x,
  2. required int y,
  3. required String content,
  4. required int lineWidth,
  5. required int height,
  6. CCodeType codeType = CCodeType.code128,
  7. CCodeRotation codeRotation = CCodeRotation.rotation_0,
})

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