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