|
|
|
|
@ -80,7 +80,7 @@ class _CallScreenState extends State<CallScreen> {
|
|
|
|
|
try {
|
|
|
|
|
Map<String, bool> SDKaudioOptions = {"connect": true, "mute": false, "autoAdjustSpeakerVolume": false};
|
|
|
|
|
Map<String, bool> SDKvideoOptions = {
|
|
|
|
|
"localVideoOn": true,
|
|
|
|
|
"localVideoOn": args.callType == 1 ? true : false,
|
|
|
|
|
};
|
|
|
|
|
JoinSessionConfig joinSession = JoinSessionConfig(
|
|
|
|
|
sessionName: args.sessionName,
|
|
|
|
|
@ -1588,8 +1588,9 @@ class CallArguments {
|
|
|
|
|
final String displayName;
|
|
|
|
|
final String sessionIdleTimeoutMins;
|
|
|
|
|
final String role;
|
|
|
|
|
final int callType;
|
|
|
|
|
|
|
|
|
|
CallArguments(this.sessionName, this.sessionPwd, this.displayName, this.sessionIdleTimeoutMins, this.role, this.isJoin);
|
|
|
|
|
CallArguments(this.sessionName, this.sessionPwd, this.displayName, this.sessionIdleTimeoutMins, this.role, this.isJoin, this.callType);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class JoinArguments {
|
|
|
|
|
|