buildCell abstract method

Widget buildCell(
  1. BuildContext context,
  2. T row,
  3. DataGridColumn<T> column,
  4. int rowIndex,
  5. 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,
);