$tr function
Creates a tr
node.
Implementation
TRowElement $tr(
{Object? id,
Object? classes,
Object? style,
Map<String, String>? attributes,
Object? cells,
bool? hidden,
bool commented = false}) {
return TRowElement(
id: id,
classes: classes,
style: style,
attributes: attributes,
cells: cells,
hidden: hidden,
commented: commented);
}