NumericDataCell constructor

const NumericDataCell({
  1. Key? key,
  2. required dynamic value,
  3. required ColumnConfig column,
  4. required Map<String, dynamic> rowData,
  5. required double width,
  6. required Color backgroundColor,
  7. required Color textColor,
  8. required Color borderColor,
  9. bool isDarkMode = false,
  10. bool isSelected = false,
  11. bool isTotalRow = false,
  12. Color? accentColor,
  13. bool supportsDrillDown = false,
  14. VoidCallback? onDrillDown,
  15. 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,
});