BasicTableCellText constructor
const
BasicTableCellText(
- String text, {
- EdgeInsets? padding,
- AlignmentGeometry? align,
- Color? background,
- TextAlign? textAlign,
- TextOverflow? textOverflow,
- TextStyle? textStyle,
- Key? key,
Implementation
const BasicTableCellText(
String text, {
super.padding,
super.align,
super.background,
TextAlign? textAlign,
TextOverflow? textOverflow,
TextStyle? textStyle,
super.key,
}) : _text = text,
_textAlign = textAlign,
_textOverflow = textOverflow ?? TextOverflow.ellipsis,
_textStyle = textStyle;