CellValueChange constructor

const CellValueChange({
  1. required double rowId,
  2. required int columnId,
  3. required dynamic value,
  4. 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,
});