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