Last active
November 2, 2019 17:30
-
-
Save Blasanka/fb0518a5fa9f32bff68549c77f086b09 to your computer and use it in GitHub Desktop.
How to compare int list with object list and add to new list(Will help to find selected users based on user ids and other info) using Dart's where()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
List ids = ['1234', '3455', '2330', '1111']; | |
List users = [{"id": '1234', "name": "username"}, {"id": '3455', "name": "username"}]; | |
List selectedUsers = users.map((user) { | |
if(ids.contains(user["id"])) return user; | |
return null; | |
}).toList(); | |
//Above line can replace with where(), as | |
List selects = users.where((u) => ids.contains(u["id"])); // where() accept method that returns boolean based on provided condition and the if the condition is true, that element will add to the new list. | |
print(selectedUsers); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment