TTable<T> constructor
const
TTable<T> ({
- Key? key,
- required List<
TTableHeader< headers,T> > - required List<
T> items, - TTableDecoration decoration = const TTableDecoration(),
- bool loading = false,
Implementation
const TTable({
super.key,
required this.headers,
required this.items,
this.decoration = const TTableDecoration(),
this.loading = false,
});