FastTable constructor
const
FastTable({})
FastTable(
header: [
TableTitleItem(title: 'Name', width: 200),
TableTitleItem(title: 'Age', width: 100),
TableTitleItem(title: 'City', width: 100),
],
rows: [
[
TableItem(title: 'John'),
TableItem(title: '30'),
TableItem(title: 'New York'),
],
[
TableItem(title: 'John'),
TableItem(title: '30'),
TableItem(title: 'New York'),
],
],
footer: [
TableTitleItem(title: 'Name', width: 200),
TableTitleItem(title: 'Age', width: 100),
TableTitleItem(title: 'City', width: 100),
],
),
Implementation
const FastTable({
super.key,
this.fixedHeader = false,
this.fixedFooter = false,
required this.rows,
this.header = const [],
this.footer = const [],
});