forEach abstract method

void forEach(
  1. void callback(
    1. Node node
    )
)

Visits the immediate children of this node.

Implementation

void forEach(void Function(Node node) callback);