skip to Main Content

How do i solve this RangeError in flutter?

Theres a funtion i wrote that uses switch below Widget buildVerdict(BuildContext context, bool firstGuessResult, bool? secondGuessResult, bool? thirdGuessResult) { switch (widget.noOfAttempts) { case 1: return firstGuessResult == true ? const Icon( Icons.check_box, color: Colors.green, ) : Container(); case 2: return…

VIEW QUESTION
Back To Top
Search