createHtml method
Implementation
NodeReference createHtml(
ir.BindingSource html,
CompileElement parent,
int nodeIndex,
) {
final renderNode = NodeReference.html(storage, nodeIndex);
_initializeAndAppendNode(parent, renderNode,
o.importExpr(Identifiers.createTrustedHtml).callFn([_textValue(html)]));
return renderNode;
}