CellScope<T extends DataGridRow> constructor

const CellScope<T extends DataGridRow>({
  1. Key? key,
  2. required T row,
  3. required DataGridColumn<T> column,
  4. required int rowIndex,
  5. required bool isSelected,
  6. required bool isPinned,
  7. required dynamic value,
  8. required DataGridController<T> controller,
  9. required Widget child,
})

Creates a CellScope providing cell data to descendants.

Implementation

const CellScope({
  super.key,
  required this.row,
  required this.column,
  required this.rowIndex,
  required this.isSelected,
  required this.isPinned,
  required this.value,
  required this.controller,
  required super.child,
});