checkIntegrity method

void checkIntegrity()

Implementation

void checkIntegrity() {
  if (mounted) quizIntegrity = quiz.getQuizIntegrityInformations(context); //quiz health check
  if (quizIntegrity == null) return;
  if (quizIntegrity!.hasImportantErrors) {
    showIntegrityCheckPanel = true; //Only in debug mode
  }
}