MeetingWraper constructor
MeetingWraper({})
Implementation
MeetingWraper(
{required this.url,
required this.meetingId,
this.userId,
this.name,
this.stream}) {
transport = Transport(
url: formatUrl(meetingId),
maxRetryCount: 3,
canReconnect: true,
);
listenMessage();
}