BarcodeCapture constructor

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

Implementation

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