forEach method
void
forEach(
- void action(
- T e
Implementation
void forEach(void Function(T e) action) {
value.forEach(action);
}
void forEach(void Function(T e) action) {
value.forEach(action);
}