barcodeTypes property
Set types of barcodes that you wish to recognize. All barcodes will be recognized if it's empty.
Implementation
List<BarcodeType>? get barcodeTypes => _barcodeTypes;
Implementation
set barcodeTypes(List<BarcodeType>? val) {
_barcodeTypes = val;
_setProcessParams({"barcodeTypes": BarcodeType.toIntList(val)}, this);
}