createElementNS method

  1. @DomName('Document.createElementNS')
  2. @DocsEditable()
Element createElementNS(String namespaceURI, String qualifiedName, [ String typeExtension ])

Source

@DomName('Document.createElementNS')
@DocsEditable()
Element createElementNS(String namespaceURI, String qualifiedName,
    [String typeExtension]) {
  return (typeExtension == null)
      ? _blink.BlinkDocument.instance
          .createElementNS_Callback_2_(this, namespaceURI, qualifiedName)
      : _blink.BlinkDocument.instance.createElementNS_Callback_3_(
          this, namespaceURI, qualifiedName, 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/createElementNS.html