DataGridRow constructor

const DataGridRow({
  1. required List<DataGridCell> cells,
})

Creates DataGridRow for the SfDataGrid.

Implementation

const DataGridRow({required List<DataGridCell> cells}) : _cells = cells;