unmount method

  1. @override
void unmount()
override

Removes this element from the tree.

Implementation

@override
void unmount() {
  for (final child in childElements) {
    child.unmount();
  }
  super.unmount();
}