removeAll method

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

Remove all the Iterable nodes from the children

The ValueListenable and removedNodes listeners will also be notified on this operation

Implementation

void removeAll(Iterable<Node> iterable) {
  super.removeAll(iterable);
  _notifyListeners();
  _notifyNodesRemoved(NodeRemoveEvent(List.from(iterable)));
}