affectsCell method

bool affectsCell(
  1. double rowId,
  2. int columnId
)

Whether this change applies to the cell at rowId / columnId.

Implementation

bool affectsCell(double rowId, int columnId) =>
    this.rowId == rowId && this.columnId == columnId;