SpanningTable constructor
SpanningTable({
- List<
SpanningTableRow> children = const <SpanningTableRow>[], - TableBorder? border,
- TableCellVerticalAlignment defaultVerticalAlignment = TableCellVerticalAlignment.top,
- AlignmentGeometry defaultCellAlignment = Alignment.topLeft,
- TableColumnWidth defaultColumnWidth = const IntrinsicColumnWidth(),
- Map<
int, TableColumnWidth> ? columnWidths, - TableWidth tableWidth = TableWidth.max,
- SpanningTableOverflowMode overflow = SpanningTableOverflowMode.strict,
- TextDirection? textDirection,
Implementation
SpanningTable({
this.children = const <SpanningTableRow>[],
this.border,
this.defaultVerticalAlignment = TableCellVerticalAlignment.top,
this.defaultCellAlignment = Alignment.topLeft,
this.defaultColumnWidth = const IntrinsicColumnWidth(),
this.columnWidths,
this.tableWidth = TableWidth.max,
this.overflow = SpanningTableOverflowMode.strict,
this.textDirection,
}) : super();