matchesCell method
Whether this reference matches the supplied row and runtime column.
Implementation
bool matchesCell(
int rowIndex,
int columnIndex, {
int? recordId,
FdcColumnIdentity? runtimeColumnId,
}) {
if (hasCellIdentity && recordId != null && runtimeColumnId != null) {
return this.recordId == recordId &&
this.runtimeColumnId == runtimeColumnId;
}
return this.rowIndex == rowIndex && this.columnIndex == columnIndex;
}