Meeting Metadata
All metadata pertaining to a meeting is stored in meeting.meta
. This includes:
meetingId
: The unique identifier of the meeting.meetingTitle
: The title of the meeting.meetingStartedTimestamp
: The timestamp when the meeting started.meetingType
: Indicates the meeting type, which can be one ofgroupCall
,webinar
, orlivestream
from theRtkMeetingType
enum.activeTab
: Information about the currently active tab for the local participant.
For example, if you want to get the title of the meeting the current participant is connected to, you can do so like this:
final meetingTitle = meeting.meta.meetingTitle;
print("The local user has joined ${meetingTitle}.");