createDivInline function

DivElement createDivInline([
  1. String? html
])

Creates a div with display: inline-block.

html The HTML to parse as content.

Implementation

DivElement createDivInline([String? html]) {
  return createDiv(true, html);
}