I created my dart web component that extends a DIV element. In DART I can add a DIV element to the DOM with:
DivElement div = new DivElement();
document.body.elements.add(div);
Can I do the same thing with my web component? What's the right syntax?