AppTableView<M extends Object> constructor

const AppTableView<M extends Object>({
  1. required AppTableViewController<M> controller,
  2. required List<TableColumn<M>> columns,
  3. AppTableViewConfig<M> config = const AppTableViewConfig(),
  4. ScrollController? horizontalScrollController,
  5. Key? key,
})

Implementation

const AppTableView({
  required this.controller,
  required this.columns,
  this.config = const AppTableViewConfig(),
  this.horizontalScrollController,
  super.key,
});