This is the error causing in flutter code The argument type 'List' can't be assigned to the parameter type 'List'
This is my list showing the error
This is because you just added List scoreKeeper which is equivalent to List<dynamic> scoreKeeper.
List scoreKeeper
List<dynamic> scoreKeeper
So instead, do List<Widget> scoreKeeper = [...];
List<Widget> scoreKeeper = [...];