LivenessDetectionStepOverlayWidget constructor

const LivenessDetectionStepOverlayWidget({
  1. Key? key,
  2. required List<LivenessDetectionStepItem> steps,
  3. required VoidCallback onCompleted,
  4. required Widget camera,
  5. required bool isFaceDetected,
  6. bool showCurrentStep = false,
  7. bool isDarkMode = true,
  8. bool showDurationUiText = false,
  9. int? duration,
})

Implementation

const LivenessDetectionStepOverlayWidget(
    {super.key,
    required this.steps,
    required this.onCompleted,
    required this.camera,
    required this.isFaceDetected,
    this.showCurrentStep = false,
    this.isDarkMode = true,
    this.showDurationUiText = false,
    this.duration});