join method
Joins the call.
Implementation
void join({
bool withAudio = true,
bool withVideo = true,
bool withScreen = false,
}) => _currentCall.value.join(
_calls,
withAudio: withAudio,
withVideo: withVideo,
withScreen: withScreen,
);