removeWhere method
Removes all the children for which the test
function returns true.
Implementation
void removeWhere(bool Function(Component component) test) {
removeAll([...children.where(test)]);
}
Removes all the children for which the test
function returns true.
void removeWhere(bool Function(Component component) test) {
removeAll([...children.where(test)]);
}