addStored method
- WebStoredCall stored, {
- bool withAudio = true,
- bool withVideo = true,
- bool withScreen = false,
Constructs an OngoingCall from the provided stored
call.
Implementation
Rx<OngoingCall> addStored(
WebStoredCall stored, {
bool withAudio = true,
bool withVideo = true,
bool withScreen = false,
}) {
Log.debug(
'addStored($stored, $withAudio, $withVideo, $withScreen)',
'$runtimeType',
);
return _callsRepo.addStored(
stored,
withAudio: withAudio,
withVideo: withVideo,
withScreen: withScreen,
);
}