JsonTable constructor

JsonTable(
  1. List dataList, {
  2. Key? key,
  3. TableHeaderBuilder? tableHeaderBuilder,
  4. TableCellBuilder? tableCellBuilder,
  5. List<JsonTableColumn>? columns,
  6. bool showColumnToggle = false,
  7. bool allowRowHighlight = false,
  8. String filterTitle = 'ADD FILTERS',
  9. Color? rowHighlightColor,
  10. int? paginationRowCount,
  11. OnRowSelect? onRowSelect,
})

Implementation

JsonTable(
  this.dataList, {
  Key? key,
  this.tableHeaderBuilder,
  this.tableCellBuilder,
  this.columns,
  this.showColumnToggle = false,
  this.allowRowHighlight = false,
  this.filterTitle = 'ADD FILTERS',
  this.rowHighlightColor,
  this.paginationRowCount,
  this.onRowSelect,
}) : super(key: key);