forEach method
Applies the given function to each element in the set.
This is a non-mutating iteration operation.
Implementation
@override
void forEach(void Function(E element) action) {
value.forEach(action);
}
Applies the given function to each element in the set.
This is a non-mutating iteration operation.
@override
void forEach(void Function(E element) action) {
value.forEach(action);
}