removeWhere method

void removeWhere(
  1. bool test(
    1. IndexedNode element
    )
)
override

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);
}