TableDatasourceConfig<M extends Object> constructor

const TableDatasourceConfig<M extends Object>({
  1. int pageSize = 10,
  2. int currentPage = 0,
  3. Map<int, List<M>> pages = const {},
  4. bool firstSearch = true,
  5. bool loadedAll = false,
  6. bool loading = false,
})

Implementation

const TableDatasourceConfig({
  this.pageSize = 10,
  this.currentPage = 0,
  this.pages = const {},
  this.firstSearch = true,
  this.loadedAll = false,
  this.loading = false,
});