TTable<T, K> constructor
const
TTable<T, K> ({
- Key? key,
- required List<
TTableHeader< headers,T> > - TTableTheme? theme,
- TListInteraction<
T> ? interaction, - List<
T> ? items, - int? itemsPerPage,
- String? search,
- int? searchDelay,
- TLoadListener<
T> ? onLoad, - ItemKeyAccessor<
T, K> ? itemKey, - TListController<
T, K> ? controller, - Widget expandedBuilder(
- T item,
- int index
Implementation
const TTable({
super.key,
required this.headers,
this.theme,
this.interaction,
//List
this.items,
this.itemsPerPage,
this.search,
this.searchDelay,
this.onLoad,
this.itemKey,
this.controller,
//Expandable
this.expandedBuilder,
});