CellValueChange constructor

const CellValueChange({
  1. required double rowId,
  2. required int columnId,
  3. required dynamic value,
  4. CellValueChangeSource source = CellValueChangeSource.programmatic,
})

Implementation

const CellValueChange({
  required this.rowId,
  required this.columnId,
  required this.value,
  this.source = CellValueChangeSource.programmatic,
});