LabelBarCodeStyle constructor

LabelBarCodeStyle({
  1. int? posX = 0,
  2. int? posY = 0,
  3. int? dotWidth = 2,
  4. int? barHeight = 162,
  5. HumanReadable? readable = HumanReadable.HIDE,
  6. Symbology? symbology = Symbology.CODE39,
  7. AlignLabel? align = AlignLabel.DEFAULT,
  8. Rotate? rotate = Rotate.ROTATE_0,
  9. int? width = -1,
  10. int? height = -1,
})

Implementation

LabelBarCodeStyle({
  this.posX = 0,
  this.posY = 0,
  this.dotWidth = 2,
  this.barHeight = 162,
  this.readable = HumanReadable.HIDE,
  this.symbology = Symbology.CODE39,
  this.align = AlignLabel.DEFAULT,
  this.rotate = Rotate.ROTATE_0,
  this.width = -1,
  this.height = -1,
});