FastTableView<T> constructor

const FastTableView<T>({
  1. Key? key,
  2. required String? cellTextContentBuilder(
    1. FastTableColumnDescriptor column,
    2. T row
    ),
  3. required List<FastTableColumnDescriptor> columns,
  4. required List<T> rows,
  5. Color? borderColor,
  6. bool isPending = false,
})

Implementation

const FastTableView({
  super.key,
  required this.cellTextContentBuilder,
  required this.columns,
  required this.rows,
  this.borderColor,
  this.isPending = false,
});