BasicTableCellHeader constructor
const
BasicTableCellHeader(
- String text, {
- bool? sortable,
- EdgeInsets? padding,
- AlignmentGeometry? align,
- Color? background,
- TextAlign? textAlign,
- TextOverflow? textOverflow,
- TextStyle? textStyle,
- Key? key,
Implementation
const BasicTableCellHeader(
super.text, {
bool? sortable,
super.padding,
AlignmentGeometry? align,
super.background,
super.textAlign,
super.textOverflow,
super.textStyle,
super.key,
}) : _sortable = sortable ?? false,
super(
align: align ?? Alignment.bottomLeft,
);