forEach method
Visits the immediate children of this node.
Implementation
forEach(callback) {
expressions.forEach((exp) {
if (exp != null) {
callback(exp);
}
});
}
Visits the immediate children of this node.
forEach(callback) {
expressions.forEach((exp) {
if (exp != null) {
callback(exp);
}
});
}