BarCode constructor

BarCode({
  1. required String data,
  2. String? position,
  3. int? width,
  4. int? height,
  5. String? hriPosition,
  6. String? hriFont,
  7. String? type,
  8. String? operator,
})

Implementation

BarCode({
  required this.data,
  this.position,
  this.width,
  this.height,
  this.hriPosition,
  this.hriFont,
  this.type,
  this.operator,
});