TABLEElement constructor

TABLEElement({
  1. Map<String, dynamic>? attributes,
  2. Object? id,
  3. Object? classes,
  4. Object? style,
  5. Object? caption,
  6. Object? head,
  7. Object? body,
  8. Object? foot,
  9. Object? content,
  10. bool? hidden,
  11. bool commented = false,
})

Implementation

TABLEElement(
    {Map<String, dynamic>? attributes,
    Object? id,
    Object? classes,
    Object? style,
    Object? caption,
    Object? head,
    Object? body,
    Object? foot,
    Object? content,
    bool? hidden,
    bool commented = false})
    : super._('table',
          attributes: attributes,
          id: id,
          classes: classes,
          style: style,
          content: createTableContent(content, caption, head, body, foot),
          hidden: hidden,
          commented: commented);