List productsList =[{
'name':'Nike air max',
'category:'Shoes',
'brand':'Nike'
}'{
'name':'Adidas Shoes',
'category:'Shoes',
'brand':'Adidas'
}'{
'name':'Nike Shirt',
'category:'Shirts',
'brand':'Nike'
}'{
'name':'Adidas Shirt',
'category:'Shirt',
'brand':'Adidas'
}']
我想从productsList
创建一个仅包含Shirt
作为类别的产品的新列表,并同时包含Shirt
作为类别和Nike
作为品牌的新列表。喜欢
List ShirtProducts =(所有具有Shirt作为类别的产品列表的所有产品)
list nikeShirtProducts =(所有产品 list 中同时包含Shiet和耐克作为品牌的产品列表)
我怎样才能做到这一点?
最佳答案
nikeShirtProducts = productsList.where((i) => (i.brand == Nike)).toList();
整理此帖子it might help
关于flutter - 如何使用仅包含键的项列表创建新变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/62958924/