TableWidget constructor

const TableWidget({
  1. Key? key,
  2. required TableController controller,
  3. bool isDarkMode = false,
  4. void onDrillDown(
    1. Map<String, dynamic> rowData,
    2. String field
    )?,
  5. void onSelectionChanged(
    1. List<Map<String, dynamic>> selectedRows
    )?,
})

Implementation

const TableWidget({
  super.key,
  required this.controller,
  this.isDarkMode = false,
  this.onDrillDown,
  this.onSelectionChanged,
});