thead function

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

A table header group.

Implementation

Node thead({String? classes, Style? style, List<Node>? children}) {
  return Node(
    tag: 'thead',
    attrs: {'class': classes, 'style': _styleAttr(style)},
    children: children,
  );
}