BarcodeCapture constructor
BarcodeCapture({})
Create a new BarcodeCapture instance.
Implementation
BarcodeCapture({
this.barcodes = const <Barcode>[],
double? height,
this.image,
this.raw,
double? width,
}) : size =
width == null && height == null ? Size.zero : Size(width!, height!);