unregisterRoot method
Clears the registered root if it is element.
Implementation
void unregisterRoot(Element element) {
if (identical(_root, element)) {
_root = null;
}
}
Clears the registered root if it is element.
void unregisterRoot(Element element) {
if (identical(_root, element)) {
_root = null;
}
}