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