buildCell abstract method
Widget
buildCell(
- BuildContext context,
- T row,
- DataGridColumn<
T> column, - int rowIndex,
- CellRenderContext<
T> renderContext,
Builds a single cell widget.
context - Flutter BuildContext
row - The data row containing this cell
column - The column definition
rowIndex - Row index
renderContext - Additional rendering context
Implementation
Widget buildCell(
BuildContext context,
T row,
DataGridColumn<T> column,
int rowIndex,
CellRenderContext<T> renderContext,
);