BarcodeImageModel constructor

BarcodeImageModel({
  1. Uint8List? imageData,
  2. List<Uint8List>? images,
  3. int quantity = 1,
  4. double? width,
  5. double? height,
  6. int? x,
  7. int? y,
  8. int? widthImage,
})

Implementation

BarcodeImageModel({
  this.imageData,
  this.images,
  this.quantity = 1, // Default value is 1
  this.width,
  this.height,
  this.x,
  this.y,
  this.widthImage,
});