BarcodeCapture constructor

const BarcodeCapture({
  1. Key? key,
  2. required String? licenseKey,
  3. bool? isBeepSound,
  4. bool? isContinueScan,
  5. bool? isVibrate,
  6. String? scanType,
  7. bool? isAutoExposure,
  8. bool? flashLight,
  9. bool? isAutoZoom,
  10. required BarcodeScanResultCallbackHandler barcodeScanResultBackHandler,
})

Implementation

const BarcodeCapture(
    {Key? key,
    required this.licenseKey,
    this.isBeepSound,
    this.isContinueScan,
    this.isVibrate,
    this.scanType,
    this.isAutoExposure,
    this.flashLight,
    this.isAutoZoom,
    /*required this.scanResultSuccess,*/ required this.barcodeScanResultBackHandler})
    : assert(licenseKey != null),
      super(key: key);