FastTableView<T> constructor
const
FastTableView<T> ({
- Key? key,
- required String? cellTextContentBuilder(
- FastTableColumnDescriptor column,
- T row
- required List<
FastTableColumnDescriptor> columns, - required List<
T> rows, - Color? borderColor,
- bool isPending = false,
Implementation
const FastTableView({
super.key,
required this.cellTextContentBuilder,
required this.columns,
required this.rows,
this.borderColor,
this.isPending = false,
});