HVBarcodeConfig constructor

HVBarcodeConfig({
  1. bool? shouldShowInstructionPage,
  2. HVBarcodeScanUIStrings? hvBarcodeScanUIStrings,
})

Creates an instance of HVBarcodeConfig.

The shouldShowInstructionPage parameter is optional and determines whether to show an instruction page before scanning. The hvBarcodeScanUIStrings parameter is also optional and allows you to provide custom UI strings for the barcode scanning UI.

Implementation

HVBarcodeConfig({
  this.shouldShowInstructionPage,
  this.hvBarcodeScanUIStrings,
});