toggleRemoteAudio method

Future<void> toggleRemoteAudio()

Toggles inbound audio in this OngoingCall on and off.

Implementation

Future<void> toggleRemoteAudio() async {
  Log.debug('toggleRemoteAudio()', '$runtimeType');
  await setRemoteAudioEnabled(!isRemoteAudioEnabled.value);
}