Element.table constructor - Element - dart:html library (original) (raw)

description

Element.table()

Creates a new <table> element.

This is equivalent to calling new Element.tag('table').

Implementation

factory Element.table() => new Element.tag('table');