buildRow abstract method

Widget buildRow(
  1. BuildContext context,
  2. T row,
  3. int index,
  4. RowRenderContext<T> renderContext,
)

Builds a single row widget.

context - Flutter BuildContext row - The data row to render index - Row index in the visible list renderContext - Additional rendering context (selection, controller, etc.)

Implementation

Widget buildRow(
  BuildContext context,
  T row,
  int index,
  RowRenderContext<T> renderContext,
);