xBuildRow method

DataGridRowAdapter? xBuildRow(
  1. XDataGridRow row
)
inherited

Implementation

DataGridRowAdapter? xBuildRow(XDataGridRow row) {
  return DataGridRowAdapter(
      cells: row.getCells().map<Widget>((dataGridCell) {
    return Container(
      alignment: Alignment.centerLeft,
      padding: EdgeInsets.symmetric(horizontal: 10.0),
      child: xBuilder_XCell(dataGridCell, row),
    );
  }).toList());
}