LivenessConfig constructor
LivenessConfig({
- required List<
LivenessDetectionStepItem> steps, - bool startWithInfoScreen = false,
Implementation
LivenessConfig({
required this.steps,
this.startWithInfoScreen = false,
}) {
assert(
steps.isNotEmpty,
'''
Cannot pass an empty array of [LivenessDetectionStepItem].
''',
);
}