stopLocalAudio method

Future<void> stopLocalAudio()

Disable local audio capturing and upstreaming

When local audio capturing and upstreaming is disabled, other members in the room will receive the onUserAudioAvailable(false) callback notification.

Implementation

Future<void> stopLocalAudio() {
  return _cloudChannel!.invokeMethod('stopLocalAudio');
}