why is the If statement is not working even if the condition is true? dart & flutter
why is the If (isNormal == true) statement is not working even if the condition is true the code that I tried to do are as below _checkResult() { bool isNormal = false; isNormal = userAnswer.every((item) => normalList.contains(item)); if (isNormal)…