466 B
466 B
Session Join Pattern
Flow
- Backend signs Video SDK session token.
- App creates
JoinSessionConfig. - App calls
joinSession. - UI reacts to session/user event callbacks.
Minimal shape
final joinConfig = JoinSessionConfig(
sessionName: 'my-session',
token: '<VIDEO_SDK_JWT>',
userName: 'Mobile User',
audioOptions: {'connect': true, 'mute': true},
videoOptions: {'localVideoOn': true},
);
await zoom.joinSession(joinConfig);