TextCell constructor
const
TextCell({
- Key? key,
- required dynamic value,
- required double width,
- TextAlign alignment = TextAlign.left,
- required Color backgroundColor,
- required Color textColor,
- required Color borderColor,
- bool isSelected = false,
- bool isTotalRow = false,
- Color? accentColor,
- bool supportsDrillDown = false,
- VoidCallback? onDrillDown,
- bool isFirstColumn = false,
Implementation
const TextCell({
super.key,
required this.value,
required this.width,
this.alignment = TextAlign.left,
required this.backgroundColor,
required this.textColor,
required this.borderColor,
this.isSelected = false,
this.isTotalRow = false,
this.accentColor,
this.supportsDrillDown = false,
this.onDrillDown,
this.isFirstColumn = false,
});