join method

Future<void> join(
  1. CallService calls, {
  2. bool withAudio = true,
  3. bool withVideo = true,
  4. bool withScreen = false,
})

Joins this OngoingCall.

Throws a JoinChatCallException, CallDoesNotExistException.

Implementation

Future<void> join(
  CallService calls, {
  bool withAudio = true,
  bool withVideo = true,
  bool withScreen = false,
}) async {
  Log.debug('join($withAudio, $withVideo, $withScreen)', '$runtimeType');

  await calls.join(
    chatId.value,
    withAudio: withAudio,
    withVideo: withVideo,
    withScreen: withScreen,
  );
}