onLivenessFailure method

void onLivenessFailure(
  1. String error
)

Implementation

void onLivenessFailure(String error) {
  debugPrint("❌ DART: Liveness failed: $error");
  state = state.copyWith(
    step: AgeVerificationStep.error,
    isLoading: false,
    error: "Liveness verification failed: $error",
  );
}