createElement method

  1. @ForceInline()
Element createElement (String tagName, [ String typeExtension ])
@ForceInline()

Implementation

@ForceInline() // Almost all call sites have one argument.
Element createElement(String tagName, [String typeExtension]) {
  return (typeExtension == null)
      ? _createElement_2(tagName)
      : _createElement(tagName, typeExtension);
}