removeAll method

void removeAll(
  1. covariant Iterable<Node> iterable
)
override

Remove all the Iterable nodes from the children

Implementation

void removeAll(Iterable<Node> iterable) {
  for (final node in iterable) {
    children.remove(node.key);
  }
}