DocumentScanner constructor

DocumentScanner({
  1. required dynamic onDocumentScanned(
    1. ScannedImage
    ),
  2. bool noGrayScale = true,
})

Implementation

DocumentScanner({
  required this.onDocumentScanned,
  // this.documentAnimation = true,
  // this.overlayColor,
  // this.detectionCountBeforeCapture,
  // this.detectionRefreshRateInMS,
  // this.enableTorch,
  // this.useFrontCam,
  // this.brightness,
  // this.saturation,
  // this.contrast,
  // this.quality,
  // this.useBase64,
  // this.saveInAppDocument,
  // this.captureMultiple,
  // this.manualOnly,
  this.noGrayScale = true,
});