DataGridCell<T> constructor

const DataGridCell<T>({
  1. required String columnName,
  2. required T? value,
})

Creates DataGridCell for the SfDataGrid.

Implementation

const DataGridCell({required this.columnName, required this.value});