How to search a list of Object by another list of items in dart

后端 未结 5 1342
一向
一向 2021-02-14 08:00

How to search a list of a class object with one of its property matching to any value in another list of strings

I am able to get filtering based on a single string , bu

5条回答
  •  滥情空心
    2021-02-14 08:34

    As of today, you can't.

    (A side note : You can use .where, .singleWhere, .firstWhere. This site explains various list/array methods.)

提交回复
热议问题