OngoingCall constructor
OngoingCall( - ChatId chatId,
- UserId me, {
- ChatCall? call,
- bool withAudio = true,
- bool withVideo = true,
- bool withScreen = false,
- MediaSettings? mediaSettings,
- OngoingCallState state = OngoingCallState.pending,
- ChatCallCredentials? creds,
- ChatCallDeviceId? deviceId,
})
Implementation
OngoingCall(
ChatId chatId,
UserId me, {
ChatCall? call,
bool withAudio = true,
bool withVideo = true,
bool withScreen = false,
MediaSettings? mediaSettings,
OngoingCallState state = OngoingCallState.pending,
this.creds,
this.deviceId,
}) : chatId = Rx(chatId),
_me = CallMemberId(me, null),
_preferredAudioDevice = mediaSettings?.audioDevice,
_preferredOutputDevice = mediaSettings?.outputDevice,
_preferredVideoDevice = mediaSettings?.videoDevice,
_preferredScreenDevice = mediaSettings?.screenDevice {
this.state = Rx<OngoingCallState>(state);
this.call = Rx(call);
members[_me] = CallMember.me(_me, isConnected: true);
if (withAudio) {
audioState = Rx(LocalTrackState.enabling);
} else {
audioState = Rx(LocalTrackState.disabled);
}
if (withVideo) {
videoState = Rx(LocalTrackState.enabling);
} else {
videoState = Rx(LocalTrackState.disabled);
}
if (withScreen) {
screenShareState = Rx(LocalTrackState.enabling);
} else {
screenShareState = Rx(LocalTrackState.disabled);
}
_stateWorker = ever(this.state, (state) {
_participated = _participated || isActive;
});
}