join method

void join({
  1. bool withAudio = true,
  2. bool withVideo = true,
  3. bool withScreen = false,
})

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,
);