removeAll method
- @override
override
Remove all their children from this render object's child list.
More efficient than removing them individually.
Implementation
@override
void removeAll() {
super.removeAll();
_keepAliveBucket.values.forEach(dropChild);
_keepAliveBucket.clear();
}