I have 2 list:
List<Users> users = List();
List<String> allIds = List();
users.id has following data [1,2,3,4,9]
and allIds has following data [12,1,2,3,4,5,6,7,8,9,90,50,20]
Now I want to know whether all data of users.id exist in allIds list or not.