CryDataTable constructor

CryDataTable({
  1. Key? key,
  2. String title = '',
  3. List<DataColumn>? columns,
  4. MapDataCellListFunction? getCells,
  5. ValueChanged<int>? onPageChanged,
  6. ValueChanged<int>? onRowsPerPageChanged,
  7. MapVoidFunction? onSelectChanged,
  8. List<int>? availableRowsPerPage,
  9. MapBoolFunction? selectable,
})

Implementation

CryDataTable({
  Key? key,
  this.title = '',
  this.columns,
  this.getCells,
  this.onPageChanged,
  this.onRowsPerPageChanged,
  this.onSelectChanged,
  this.availableRowsPerPage,
  this.selectable,
}) : super(key: key);