barcodeTypes property

List<BarcodeType>? barcodeTypes

Set types of barcodes that you wish to recognize. All barcodes will be recognized if it's empty.

Implementation

List<BarcodeType>? get barcodeTypes => _barcodeTypes;
void barcodeTypes=(List<BarcodeType>? val)

Implementation

set barcodeTypes(List<BarcodeType>? val) {
  _barcodeTypes = val;
  _set({"barcodeTypes": val?.map((e) => e.value).toList()});
}