TableViewCellBuilder typedef

TableViewCellBuilder = TableViewCell Function(BuildContext context, TableVicinity vicinity)

Signature for a function that creates a child TableViewCell for a given TableVicinity in a TableView, but may return null.

Used by TableCellBuilderDelegate.builder to build cells on demand for the table.

Implementation

typedef TableViewCellBuilder = TableViewCell Function(
  BuildContext context,
  TableVicinity vicinity,
);