rowElementsBuilder property
Builder function for creating the row elements (the cells within each row).
This function is called for each item in items
.
It receives the BuildContext and a RowBuilderParams object, and returns a list of Widgets,
one for each column in the row (excluding actions).
Implementation
final List<Widget> Function(BuildContext, RowBuilderParams)
rowElementsBuilder;