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