parseBarcodes property

bool? get parseBarcodes

When set to false, the Barcode code parsing will be skipped and the raw information from the code will be returned instead.

Implementation

bool? get parseBarcodes => _parseBarcodes;
set parseBarcodes (bool? val)

Implementation

set parseBarcodes(bool? val) {
  _parseBarcodes = val;
  _set({"parseBarcodes": val});
}