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