CellScope<T extends DataGridRow> constructor
const
CellScope<T extends DataGridRow> ({
- Key? key,
- required T row,
- required DataGridColumn<
T> column, - required int rowIndex,
- required bool isSelected,
- required bool isPinned,
- required dynamic value,
- required DataGridController<
T> controller, - 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,
});