Skip to main content

Meeting Builder Widget

The entry point into real-time communication SDK.

Using Meeting Builder Widget

The Meeting Builder Widget includes methods and events to initialize and configure the SDK. It is a factory class.

Properties

    Properties
    • meetingIdString

    • displayNameString

    • tokenString

    • participantIdString

    • micEnabledBool

    • webcamEnabledBool

    • notificationNotificationInfo

    • builderWidget Function(Meeting)

Example

Configure MeetingBuilder Example
MeetingBuilder(
meetingId: "<meeting-id>",
displayName: "Chintan",
token: "<token>",
micEnabled: true,
webcamEnabled: true,
notification: const NotificationInfo(
title: "Video SDK",
message: "Video SDK is sharing screen in the meeting",
icon: "notification_share", // drawable icon name
),
builder: (Meeting meeting) {
return Text("Meeting screen");
},
)

Got a Question? Ask us on discord