void main() { const list = [1, 2, 3, 4]; final odd = where(list, (value) => value % 2 == 1); print(odd); } List where(List items