TABLEElement constructor
TABLEElement({})
Implementation
TABLEElement(
{Map<String, dynamic>? attributes,
Object? id,
Object? classes,
Object? style,
Object? caption,
Object? head,
Object? body,
Object? foot,
Object? content,
bool? hidden,
bool commented = false})
: super._('table',
attributes: attributes,
id: id,
classes: classes,
style: style,
content: createTableContent(content, caption, head, body, foot),
hidden: hidden,
commented: commented);