List<dynamic> blueButtons = [0.0, 0.01, 0.02, 0.03, 0.04, 0.33, 0.34, 0.67, 0.4, 0.2];
List<dynamic> match = [];
for(int i = 0; i< blueButtons.length; i++) {
match.add(BID_DATA.indexOf(blueButtons[i]));
}
print("Match -> $match");
我正在尝试添加这些数字的索引,并且出现此错误未处理的异常:类型'String'不是'num'类型的子类型我也已经尝试过这个
match.add(BID_DATA.indexOf(blueButtons[i]).toString());