DefaultDataTableWidget<T> constructor

const DefaultDataTableWidget<T>({
  1. Key? key,
  2. required DataTableController<T> controller,
  3. OptionContentTable? topContent,
  4. OptionContentTable? bottomContent,
  5. ShowerMoreContentIntoRowWidget<T>? showerMoreContentIntoRowWidget,
  6. HeaderIntoRowWidget<T>? headerIntoRowWidget,
  7. required AsyncDataSource<T> handleChangeData,
  8. required DataTableHeaderOption headerOption,
  9. required DataTableRowOption<T> rowOption,
  10. required DataTableColumnOption columnOption,
  11. required DataTablePaginationOption paginationOption,
  12. required DataTableCheckBoxOption<T> checkBoxOption,
})

Implementation

const DefaultDataTableWidget({
  Key? key,
  required this.controller,
  this.topContent,
  this.bottomContent,
  this.showerMoreContentIntoRowWidget,
  this.headerIntoRowWidget,
  required this.handleChangeData,
  required this.headerOption,
  required this.rowOption,
  required this.columnOption,
  required this.paginationOption,
  required this.checkBoxOption,
}) : super(key: key);