HVDocConfig constructor

HVDocConfig({
  1. HVDocCaptureUIStrings? hvDocCaptureUIStrings,
  2. bool? shouldShowTrustLogos,
  3. bool? shouldShowInstructionPage,
  4. bool? shouldEnableDocumentUpload,
  5. bool? shouldShowFlashIcon,
  6. DocumentType? docType,
  7. double? aspectRatioValue,
  8. bool? shouldAddPadding,
  9. double? padding,
  10. bool? shouldShowCloseAlert,
  11. String? closeAlertDialogTitle,
  12. String? closeAlertDialogDescription,
  13. bool? shouldAutoCapture,
  14. int? autoCaptureDuration,
  15. bool? shouldReadBarcode,
  16. int? readBarcodeTimeout,
  17. bool? disableBarcodeSkip,
  18. HVOCRAPIDetails? hvOCRAPIDetails,
  19. bool? shouldShowReviewScreen,
  20. bool? shouldEnableRetries,
})

Constructs a new HVDocConfig object with the specified configuration options.

Implementation

HVDocConfig({
  this.hvDocCaptureUIStrings,
  this.shouldShowTrustLogos,
  this.shouldShowInstructionPage,
  this.shouldEnableDocumentUpload,
  this.shouldShowFlashIcon,
  this.docType,
  this.aspectRatioValue,
  this.shouldAddPadding,
  this.padding,
  this.shouldShowCloseAlert,
  this.closeAlertDialogTitle,
  this.closeAlertDialogDescription,
  this.shouldAutoCapture,
  this.autoCaptureDuration,
  this.shouldReadBarcode,
  this.readBarcodeTimeout,
  this.disableBarcodeSkip,
  this.hvOCRAPIDetails,
  this.shouldShowReviewScreen,
  this.shouldEnableRetries,
});