CheckScannerConfiguration constructor

CheckScannerConfiguration({
  1. CheckDocumentDetectionMode documentDetectionMode = CheckDocumentDetectionMode.DISABLED,
  2. List<CheckStandard>? acceptedCheckStandards,
  3. ProcessingMode processingMode = ProcessingMode.AUTO,
})

Implementation

CheckScannerConfiguration({
  this.documentDetectionMode = CheckDocumentDetectionMode.DISABLED,
  List<CheckStandard>? acceptedCheckStandards,
  this.processingMode = ProcessingMode.AUTO,
}) : acceptedCheckStandards = acceptedCheckStandards ?? [];