stopLocalAudio method

  1. @override
void stopLocalAudio()
override

Stop local audio capturing and publishing

After local audio capturing and publishing is stopped, other users in the room will receive the TRTCCloudListener.onUserAudioAvailable notification indicating that the user's audio is no longer available.

Implementation

@override
void stopLocalAudio() {
  TRTCLog(_tag, "stopLocalAudio");
  TRTCCloudNative.instance.stopLocalAudio();
}