SpanningTable constructor

SpanningTable({
  1. List<SpanningTableRow> children = const <SpanningTableRow>[],
  2. TableBorder? border,
  3. TableCellVerticalAlignment defaultVerticalAlignment = TableCellVerticalAlignment.top,
  4. AlignmentGeometry defaultCellAlignment = Alignment.topLeft,
  5. TableColumnWidth defaultColumnWidth = const IntrinsicColumnWidth(),
  6. Map<int, TableColumnWidth>? columnWidths,
  7. TableWidth tableWidth = TableWidth.max,
  8. SpanningTableOverflowMode overflow = SpanningTableOverflowMode.strict,
  9. 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();