TRowElement constructor
TRowElement({})
Implementation
TRowElement(
{Map<String, dynamic>? attributes,
Object? id,
Object? classes,
Object? style,
Object? cells,
bool headerRow = false,
bool? hidden,
bool commented = false})
: super._('tr',
attributes: attributes,
id: id,
classes: classes,
style: style,
content: createTableCells(cells, headerRow),
hidden: hidden,
commented: commented);