lockIdentity method
void
lockIdentity()
✅ NEW: Explicitly lock identity Call this before binding row to UI (e.g., in ListView itemBuilder) After locking, setIdentityKey() will throw error
Implementation
void lockIdentity() {
_identityLocked = true;
}