CameraKitPlusView constructor

const CameraKitPlusView({
  1. Key? key,
  2. required void onBarcodeRead(
    1. String code
    )?,
  3. void onBarcodeDataRead(
    1. BarcodeData data
    )?,
  4. CameraKitPlusController? controller,
  5. List<BarcodeType>? types,
  6. bool showFrame = false,
  7. bool showZoomSlider = false,
  8. bool focusRequired = true,
})

Implementation

const CameraKitPlusView({
  super.key,
  required this.onBarcodeRead,
  this.onBarcodeDataRead,
  this.controller,
  this.types,
  this.showFrame = false,
  this.showZoomSlider = false,
  this.focusRequired = true,
});