String getParticipantNameByIdentity(String? identity) { if (identity == null) return "Unknown"; return _identityToNameMap[identity] ?? "Unknown"; }