TBODYElement constructor
TBODYElement({})
Implementation
TBODYElement(
{Map<String, dynamic>? attributes,
Object? id,
Object? classes,
Object? style,
Object? rows,
bool? hidden,
bool commented = false})
: super._('tbody',
attributes: attributes,
id: id,
classes: classes,
style: style,
content: createTableRows(rows, false),
hidden: hidden,
commented: commented);