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