Element.article constructor - Element - dart:html library (original) (raw)
Element.article()
Creates a new <article>
element.
This is equivalent to calling new Element.tag('article')
.
Implementation
factory Element.article() => new Element.tag('article');