setValue method

void setValue(
  1. int? value
)

Sets value of cell while poking _onChange

Implementation

void setValue(int? value) {
  this._value = value;
  this.isPristine = false;

  _onChange.add(this);
}