ShadTableCell.header constructor
const
ShadTableCell.header({
- Key? key,
- required Widget child,
- AlignmentGeometry? alignment,
- double? height,
- EdgeInsetsGeometry? padding,
- TextStyle? style,
Creates a ShadTableCell with the header variant.
A cell widget for use within ShadTable.
Provides styling and structure for table cells, including header and footer variants.
Implementation
const ShadTableCell.header({
super.key,
required super.child,
this.alignment,
this.height,
this.padding,
this.style,
}) : variant = ShadTableCellVariant.header;