unmount method
void
unmount()
Implementation
void unmount() {
if (!_mounted) return;
renderer.unmount();
rootComponent = null;
_currentTree = null;
_componentTrees.clear();
_componentNodes.clear();
_mounted = false;
}