copyWith method
LivenessDetectionStepItem
copyWith({
- LivenessDetectionStep? step,
- String? title,
- double? thresholdToCheck,
Implementation
LivenessDetectionStepItem copyWith({
LivenessDetectionStep? step,
String? title,
double? thresholdToCheck,
}) {
return LivenessDetectionStepItem(
step: step ?? this.step,
title: title ?? this.title,
thresholdToCheck: thresholdToCheck ?? this.thresholdToCheck,
);
}