mount method
Inserts this element into the tree under parent and builds it.
Implementation
void mount(Element? parent, BuildOwner owner) {
this.parent = parent;
this.owner = owner;
mounted = true;
_registerGlobalKey();
performRebuild();
}