mount method
Adds this element to the tree at the given parent.
Implementation
@override
void mount(Element? parent) {
super.mount(parent);
final childWidget = (widget as ParentDataWidget).child;
_child = updateChild(null, childWidget);
_applyParentData();
}