unmountElement method

void unmountElement()

Implementation

void unmountElement() {
  for (final child in renderBoxes.values) {
    renderer?.dropChild(child);
  }
  renderBoxes.clear();
  elements.clear();
  widgets.clear();

  element = null;
}