PagedDataTableConfiguration constructor

const PagedDataTableConfiguration({
  1. List<int>? pageSizes = const [5, 25, 50, 100],
  2. double columnsHeaderHeight = 44.0,
  3. double filterBarHeight = 56.0,
  4. double? rowHeight = 52.0,
  5. int initialPageSize = 5,
  6. PagedDataTableFooterConfiguration footer = const PagedDataTableFooterConfiguration(),
  7. bool filterBarVisibile = true,
})

Implementation

const PagedDataTableConfiguration({
  this.pageSizes = const [5, 25, 50, 100],
  this.columnsHeaderHeight = 44.0,
  this.filterBarHeight = 56.0,
  this.rowHeight = 52.0,
  this.initialPageSize = 5,
  this.footer = const PagedDataTableFooterConfiguration(),
  this.filterBarVisibile = true,
});