Flutter 如何清空dart中的图标列表

Flutter 如何清空dart中的图标列表,flutter,dart,Flutter,Dart,我正在做一个非常简单的问答游戏,它以一个空的图标列表开始,用来记录答案是对还是错 List<Icon> scoreKeeper = []; scoreKeeper.clear()只需清除你的list@Reign这就是我要找的。 if (quizBrain.isFinshed() == true) { print('time to empty the scorekeeper list'); scoreKeeper.remove(0-scoreKeeper.length

我正在做一个非常简单的问答游戏,它以一个空的图标列表开始,用来记录答案是对还是错

List<Icon> scoreKeeper = [];

scoreKeeper.clear()
只需清除你的list@Reign这就是我要找的。
if (quizBrain.isFinshed() == true) {
    print('time to empty the scorekeeper list');
    scoreKeeper.remove(0-scoreKeeper.length -1);
    }