NumericDataCell constructor
const
NumericDataCell({
- Key? key,
- required dynamic value,
- required ColumnConfig column,
- required Map<
String, dynamic> rowData, - required double width,
- required Color backgroundColor,
- required Color textColor,
- required Color borderColor,
- bool isDarkMode = false,
- bool isSelected = false,
- bool isTotalRow = false,
- Color? accentColor,
- bool supportsDrillDown = false,
- VoidCallback? onDrillDown,
- bool isFirstColumn = false,
Implementation
const NumericDataCell({
super.key,
required this.value,
required this.column,
required this.rowData,
required this.width,
required this.backgroundColor,
required this.textColor,
required this.borderColor,
this.isDarkMode = false,
this.isSelected = false,
this.isTotalRow = false,
this.accentColor,
this.supportsDrillDown = false,
this.onDrillDown,
this.isFirstColumn = false,
});