TableColumn constructor

const TableColumn({
  1. required String key,
  2. required String label,
  3. Object? header,
  4. String? align,
  5. String? className,
  6. Map<String, Object?> headerStyle = const {},
  7. Map<String, Object?> cellStyle = const {},
  8. DartStyle? headerDartStyle,
  9. DartStyle? cellDartStyle,
})

Creates a table column definition.

Implementation

const TableColumn({
  required this.key,
  required this.label,
  this.header,
  this.align,
  this.className,
  this.headerStyle = const {},
  this.cellStyle = const {},
  this.headerDartStyle,
  this.cellDartStyle,
});