PagedDataTableConfiguration constructor

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

Implementation

const PagedDataTableConfiguration(
    {this.allowRefresh = true,
    this.pageSizes = const [10, 20, 50, 100],
    this.columnsHeaderHeight = 56.0,
    this.filterBarHeight = 56.0,
    this.rowHeight = 52.0,
    this.initialPageSize = 100,
    this.footer = const PagedDataTableFooterConfiguration()});