addStored method

Rx<OngoingCall> addStored(
  1. WebStoredCall stored, {
  2. bool withAudio = true,
  3. bool withVideo = true,
  4. 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,
  );
}