barcodeParserType property

int? barcodeParserType

There are documents that contain barcodes which data can be parsed only if document type verification is performed. The following property allows setting the barcode parser type which should be used during recognition. It allows parsing barcode data without performing document type verification.

Implementation

int? get barcodeParserType => _barcodeParserType;
void barcodeParserType=(int? val)

Implementation

set barcodeParserType(int? val) {
  _barcodeParserType = val;
  _set({"barcodeParserType": val});
}