PagedListView constructor

const PagedListView({
  1. required List<DataRow> rows,
  2. required List<DataColumn> columns,
  3. bool showSelect = true,
  4. bool showSort = true,
  5. IndexedWidgetBuilder? mobileItemBuilder,
  6. List<Widget>? selectedActions,
  7. List<Widget>? actions,
  8. ValueChanged<bool?>? onSelectAll,
  9. int? rowsPerPage,
  10. VoidCallback? loadNext,
  11. int? sortColumnIndex,
  12. bool? sortAscending,
  13. RefreshCallback? onRefresh,
  14. bool isRowCountApproximate = false,
  15. double initialScrollOffset = 0,
  16. Widget? noItems,
  17. Widget? isLoading,
  18. List<Widget>? slivers,
})

Implementation

const PagedListView({
  required this.rows,
  required this.columns,
  this.showSelect = true,
  this.showSort = true,
  this.mobileItemBuilder,
  this.selectedActions,
  this.actions,
  this.onSelectAll,
  this.rowsPerPage,
  this.loadNext,
  this.sortColumnIndex,
  this.sortAscending,
  this.onRefresh,
  this.isRowCountApproximate = false,
  this.initialScrollOffset = 0,
  this.noItems,
  this.isLoading,
  this.slivers,
});