forEach method
void
forEach(
- void action(
- E element
Implementation
void forEach(void Function(E element) action) => value.forEach(action);
void forEach(void Function(E element) action) => value.forEach(action);