attach method
Implementation
@override
void attach(DomRenderObject child, {DomRenderObject? after}) {
attachChild(child, after, startNode: firstChildNode?.previousSibling);
if (after == null) {
firstChild = child;
}
if (after == lastChild) {
lastChild = child;
}
}