<itemvalue="Invokes [action] on each element of this iterable in iteration order. Example: ```dart final numbers = <int>[1, 2, 6, 7]; numbers.forEach(print); 1 2 6 7 ```"/>
<itemvalue="Invokes [action] on each element of this iterable in iteration order. Example: ```dart final numbers = <int>[1, 2, 6, 7]; numbers.forEach(print); 1 2 6 7 ```"/>
<itemvalue="Executes [action] on each element of this stream. Completes the returned [Future] when all elements of this stream have been processed. If this stream emits an error, or if the call to [action] throws, the returned future completes with that error, and processing stops."/>
<itemvalue="Executes [action] on each element of this stream. Completes the returned [Future] when all elements of this stream have been processed. If this stream emits an error, or if the call to [action] throws, the returned future completes with that error, and processing stops."/>