unmount method

  1. @override
void unmount()
override

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