forEach method
Implementation
void forEach(void Function(HyperRoute r) action) {
action(this);
for (final child in children) {
child.forEach(action);
}
}
void forEach(void Function(HyperRoute r) action) {
action(this);
for (final child in children) {
child.forEach(action);
}
}