createElement method
- @DomName('Document.createElement')
 
Source
@DomName('Document.createElement')
Element createElement(String tagName, [String typeExtension]) {
  return (typeExtension == null)
      ? _blink.BlinkDocument.instance.createElement_Callback_1_(this, tagName)
      : _blink.BlinkDocument.instance
          .createElement_Callback_2_(this, tagName, typeExtension);
}
    © 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
    https://api.dartlang.org/stable/1.24.3/dart-html/Document/createElement.html