createTHead method

TableSectionElement createTHead()

Implementation

TableSectionElement createTHead() {
  return _createUniqueChild(
    lowerCaseTagName: '_thead',
    constructor: () => TableSectionElement._(ownerDocument!, 'thead'),
  );
}