我需要一种方法来搜索一个列表项(字符串列表)中的对象列表。
filtered = allExhibitors.where((element) => element.product_categories == element.product_categories?.where((element2) => element2 == filterModel.categoryId)).toList(growable: true);
allExhibitors是参展商列表(List<Exhibitor>
),产品类别是字符串列表(List<String>
)
先谢谢你。
1条答案
按热度按时间xesrikrc1#
您可以使用contains。
比如: