hasDeletedParticipant property

bool get hasDeletedParticipant

Implementation

bool get hasDeletedParticipant {
  if (isEphemeral) return false;
  return myUserId != null && !participants.any((p) => p.userId != myUserId);
}