TTable<T> constructor

const TTable<T>({
  1. Key? key,
  2. required List<TTableHeader<T>> headers,
  3. required List<T> items,
  4. TTableDecoration decoration = const TTableDecoration(),
  5. bool loading = false,
})

Implementation

const TTable({
  super.key,
  required this.headers,
  required this.items,
  this.decoration = const TTableDecoration(),
  this.loading = false,
});