BarcodeCapture constructor

const BarcodeCapture({
  1. List<Barcode> barcodes = const <Barcode>[],
  2. Uint8List? image,
  3. Object? raw,
  4. Size size = Size.zero,
})

Create a new BarcodeCapture instance.

Implementation

const BarcodeCapture({
  this.barcodes = const <Barcode>[],
  this.image,
  this.raw,
  this.size = Size.zero,
});