Whether the given attendeeId string represents a content share source.
attendeeId
static bool isContentId(String? attendeeId) { if (attendeeId == null) return false; return attendeeId.endsWith('#content'); }