Answers for "flutter find in list"

1

dart find element in list

List<User> users= [User(id:'1'), User(id:'2'),  User(id:'3'),  User(id:'4')];

var user4 = users.where((element) => user.id == '4').first;
Posted by: Guest on August-10-2021
0

flutter indexwhere examples

/// Find a person in the list using indexWhere method.
void findPersonUsingIndexWhere(List<Person> people,
    String personName) {
  // Find the index of person. If not found, index = -1
  final index = people.indexWhere((element) =>
        element.name == personName);
  if (index >= 0) {
    print('Using indexWhere: ${people[index]}');
  }
}
Posted by: Guest on October-05-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language