TBody constructor

TBody([
  1. String? value
])

The <tbody> HTML element encapsulates a set of table rows (<tr> elements), indicating that they comprise the body of the table (<table>). Read more...

Implementation

TBody([super.value]) {
  tag = 'tbody';
}