forEach method Null safety
- @override
- void f(
- E element
Invokes action
on each element of this iterable in iteration order.
Implementation
@override
void forEach(void Function(E element) f) {
_values.forEach(f);
notifyListeners();
}
Invokes action
on each element of this iterable in iteration order.
@override
void forEach(void Function(E element) f) {
_values.forEach(f);
notifyListeners();
}