KnowledgePanelTableElement constructor

const KnowledgePanelTableElement({
  1. required String id,
  2. required String? title,
  3. required List<KnowledgePanelTableColumn> columns,
  4. required List<KnowledgePanelTableRowElement> rows,
})

Implementation

const KnowledgePanelTableElement({
  required this.id,
  required this.title,
  required this.columns,
  required this.rows,
});