BarcodeCapture constructor

BarcodeCapture({
  1. required List<Barcode> barcodes,
  2. required dynamic raw,
  3. Uint8List? image,
  4. double? width,
  5. double? height,
})

Implementation

BarcodeCapture({
  required this.barcodes,
  required this.raw,
  this.image,
  this.width,
  this.height,
});