$tfoot function

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

Creates a tfoot node.

Implementation

TFOOTElement $tfoot(
    {Object? id,
    Object? classes,
    Object? style,
    Map<String, String>? attributes,
    Object? rows,
    bool? hidden,
    bool commented = false}) {
  return TFOOTElement(
      id: id,
      classes: classes,
      style: style,
      attributes: attributes,
      rows: rows,
      hidden: hidden,
      commented: commented);
}