LivenessDetectionStepItem constructor

LivenessDetectionStepItem({
  1. required LivenessDetectionStep step,
  2. required String title,
  3. double? thresholdToCheck,
  4. required bool isCompleted,
})

Implementation

LivenessDetectionStepItem({
  required this.step,
  required this.title,
  this.thresholdToCheck,
  required this.isCompleted,
});