Answers for "flutter indexwhere examples"

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

Browse Popular Code Answers by Language