hasSameCellIdentity method

bool hasSameCellIdentity(
  1. FdcGridCellRef other
)

Whether other refers to the same row and runtime column.

Implementation

bool hasSameCellIdentity(FdcGridCellRef other) {
  return hasCellIdentity &&
      other.hasCellIdentity &&
      recordId == other.recordId &&
      runtimeColumnId == other.runtimeColumnId;
}