TagflowTableElement constructor

const TagflowTableElement({
  1. required String tag,
  2. required int rowCount,
  3. required int columnCount,
  4. required List<TagflowNode> rows,
  5. required Map<String, CellSpan> spans,
  6. TagflowNode? caption,
  7. Map<String, String>? attributes,
  8. TagflowNode? parent,
})

Implementation

const TagflowTableElement({
  required super.tag,
  required this.rowCount,
  required this.columnCount,
  required this.rows,
  required this.spans,
  this.caption,
  Map<String, String>? attributes,
  super.parent,
}) : _attributes = attributes ?? const {};