HVFaceConfig constructor

HVFaceConfig({
  1. HVFaceCaptureUIStrings? hvFaceCaptureUIStrings,
  2. bool? shouldShowTrustLogos,
  3. bool? shouldShowInstructionPage,
  4. bool? shouldShowCameraSwitchButton,
  5. bool? shouldUseBackCamera,
  6. bool? shouldAddPadding,
  7. HVFaceCapturePadding? padding,
  8. bool? shouldShowCloseAlert,
  9. String? closeAlertDialogTitle,
  10. String? closeAlertDialogDescription,
  11. bool? shouldAutoCapture,
  12. int? autoCaptureDuration,
  13. HVVideoRecordingConfig? videoRecordingConfig,
  14. bool? shouldCheckActiveLiveness,
  15. int? totalGestures,
  16. HVLivenessAPIDetails? hvLivenessAPIDetails,
  17. bool? shouldReturnFullImageUrl,
  18. bool? shouldEnableRetries,
})

Creates an instance of HVFaceConfig with the specified configuration.

Implementation

HVFaceConfig({
  this.hvFaceCaptureUIStrings,
  this.shouldShowTrustLogos,
  this.shouldShowInstructionPage,
  this.shouldShowCameraSwitchButton,
  this.shouldUseBackCamera,
  this.shouldAddPadding,
  this.padding,
  this.shouldShowCloseAlert,
  this.closeAlertDialogTitle,
  this.closeAlertDialogDescription,
  this.shouldAutoCapture,
  this.autoCaptureDuration,
  this.videoRecordingConfig,
  this.shouldCheckActiveLiveness,
  this.totalGestures,
  this.hvLivenessAPIDetails,
  this.shouldReturnFullImageUrl,
  this.shouldEnableRetries,
});