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
You can simply use List.where() to filter a list
List.where()
final List cartprd = snapshot.documents .where((f) => shop_cart.ShoppingCart.contains(f.data));