clearCurrentCallInfo method

Future<void> clearCurrentCallInfo()

Implementation

Future<void> clearCurrentCallInfo() async {
  try {
    await leaveChannel();
    await stopPreview();
    await disableAudio();
    // ignore: empty_catches
  } catch (e) {}
}