提问人:Anjali 提问时间:4/19/2022 更新时间:4/19/2022 访问量:49
toSet() 方法在 null 时被调用。接收者:null 尝试调用:toSet()
The method toSet() was called on null. Receiver: null Tried calling: toSet()
问:
在此代码中,我得到了一个异常:
小部件库捕获的异常 在 null 上调用了方法“toSet”。 接收器:null 尝试调用:toSet()
代码在这里:
getCommonCats(position) {
final List lists = [_campList[position].categories, catName];
final commonCats = lists.fold<Set>(
lists.first.toSet(), (a, b) => a.intersection(b.toSet())
);
答: 暂无答案
评论
catName
lists
_campList[position].categories
catName
commonCats