stopAudioRecording method

  1. @override
Future<void> stopAudioRecording()

Stops the audio recording on the client.

Note You can call this method before calling the RtcEngine.leaveChannel method; else, the recording automatically stops when you call the RtcEngine.leaveChannel method.

Implementation

@override
Future<void> stopAudioRecording() {
  return _invokeMethod('stopAudioRecording');
}