$td function
Creates a td
node.
Implementation
TDElement $td(
{Object? id,
Object? classes,
Object? style,
Map<String, String>? attributes,
int? colspan,
int? rowspan,
String? headers,
Object? content,
bool? hidden,
bool commented = false}) =>
TDElement(
id: id,
classes: classes,
style: style,
attributes: {
if (colspan != null) 'colspan': '$colspan',
if (rowspan != null) 'rowspan': '$rowspan',
if (headers != null) 'headers': headers,
...?attributes,
},
content: content,
hidden: hidden,
commented: commented);