retryLiveness method
void
retryLiveness()
Implementation
void retryLiveness() {
debugPrint("🔄 DART: Retrying liveness");
state = state.copyWith(
step: AgeVerificationStep.livenessReady,
error: null,
);
// Start liveness again after brief delay
Future.delayed(const Duration(milliseconds: 500), () {
_startLivenessCapture();
});
}