table function
A table.
Implementation
Node table({String? id, String? classes, Style? style, List<Node>? children}) {
return Node(
tag: 'table',
attrs: {'id': id, 'class': classes, 'style': _styleAttr(style)},
children: children,
);
}