TRowElement constructor

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

Implementation

TRowElement(
    {Map<String, dynamic>? attributes,
    Object? id,
    Object? classes,
    Object? style,
    Object? cells,
    bool headerRow = false,
    bool? hidden,
    bool commented = false})
    : super._('tr',
          attributes: attributes,
          id: id,
          classes: classes,
          style: style,
          content: createTableCells(cells, headerRow),
          hidden: hidden,
          commented: commented);