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