createDivInline function

HTMLDivElement createDivInline({
  1. String? html,
  2. bool unsafe = false,
})

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);
}