unmount method
Removes this element and its descendants from the tree permanently.
Implementation
@override
void unmount() {
for (final child in _childElements) {
child.unmount();
}
_childElements.clear();
children.clear();
super.unmount();
}