hasCellIdentity property

bool get hasCellIdentity

True when both stable record and runtime-column identifiers are available.

When true, identity-aware comparisons use recordId and runtimeColumnId instead of view-relative row and column indexes. It is false when either identifier is absent, in which case callers must rely on the current-view row and current-layout column indexes.

Implementation

bool get hasCellIdentity => recordId != null && runtimeColumnId != null;