table function

Node table({
  1. String? id,
  2. String? classes,
  3. Style? style,
  4. List<Node>? children,
})

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,
  );
}