THEADElement constructor

THEADElement({
  1. Map<String, dynamic>? attributes,
  2. Object? id,
  3. Object? classes,
  4. Object? style,
  5. Object? rows,
  6. bool? hidden,
  7. bool commented = false,
})

Implementation

THEADElement(
    {Map<String, dynamic>? attributes,
    Object? id,
    Object? classes,
    Object? style,
    Object? rows,
    bool? hidden,
    bool commented = false})
    : super._('thead',
          attributes: attributes,
          id: id,
          classes: classes,
          style: style,
          content: createTableRows(rows, true),
          hidden: hidden,
          commented: commented);