isContentId static method

bool isContentId(
  1. String? attendeeId
)

Whether the given attendeeId string represents a content share source.

Implementation

static bool isContentId(String? attendeeId) {
  if (attendeeId == null) return false;
  return attendeeId.endsWith('#content');
}