CellValueChange constructor
const
CellValueChange({
- required double rowId,
- required int columnId,
- required dynamic value,
- CellValueChangeSource source = CellValueChangeSource.programmatic,
Creates a CellValueChange for the cell at rowId / columnId.
Implementation
const CellValueChange({
required this.rowId,
required this.columnId,
required this.value,
this.source = CellValueChangeSource.programmatic,
});