TableConfig constructor

const TableConfig({
  1. Map<int, TableColumnWidth>? columnWidths,
  2. TableColumnWidth? defaultColumnWidth,
  3. TextDirection? textDirection,
  4. TableBorder? border,
  5. TableCellVerticalAlignment? defaultVerticalAlignment,
  6. TextBaseline? textBaseline,
  7. Decoration? headerRowDecoration,
  8. Decoration? bodyRowDecoration,
  9. TextStyle? headerStyle,
  10. TextStyle? bodyStyle,
  11. WidgetWrapper? wrapper,
  12. EdgeInsets headPadding = const EdgeInsets.fromLTRB(8, 4, 8, 4),
  13. EdgeInsets bodyPadding = const EdgeInsets.fromLTRB(8, 4, 8, 4),
})

Implementation

const TableConfig({
  this.columnWidths,
  this.defaultColumnWidth,
  this.textDirection,
  this.border,
  this.defaultVerticalAlignment,
  this.textBaseline,
  this.headerRowDecoration,
  this.bodyRowDecoration,
  this.headerStyle,
  this.bodyStyle,
  this.wrapper,
  this.headPadding = const EdgeInsets.fromLTRB(8, 4, 8, 4),
  this.bodyPadding = const EdgeInsets.fromLTRB(8, 4, 8, 4),
});