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