TagflowTableElement constructor
const
TagflowTableElement({
- required String tag,
- required int rowCount,
- required int columnCount,
- required List<
TagflowNode> rows, - required Map<
String, CellSpan> spans, - TagflowNode? caption,
- Map<
String, String> ? attributes, - 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 {};