createElement method
- @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);
}