forEach method

void forEach(
  1. void action(
    1. HyperRoute<RouteValue> r
    )
)

Implementation

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