DropdownSearch( mode: Mode.MENU, items: countries.map((e) => e['name']).toList(), showSearchBox: true, onChanged: (value) { var selected = countries.firstWhere((e) => e['name'] == value); print(selected['id']); }, selectedItem: "Canada", )