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