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