createDivInline function
Creates a div
with display: inline-block
.
html
The HTML to parse as content.
Implementation
HTMLDivElement createDivInline({String? html, bool unsafe = false}) {
return createDiv(inline: true, html: html, unsafe: unsafe);
}