removeWhere method
Remove all the child nodes from the children that match the criterion
in the given test
Implementation
void removeWhere(bool Function(IndexedNode element) test) {
children.removeWhere(test);
}
Remove all the child nodes from the children that match the criterion
in the given test
void removeWhere(bool Function(IndexedNode element) test) {
children.removeWhere(test);
}