stop method

Future<void> stop()

Disables the local participant's audio and stops sending the audio to a conference. This method is not available for listeners and triggers the UnsupportedError. The stop method requires a few seconds to become effective.

Implementation

Future<void> stop() async {
  return await _methodChannel.invokeMethod<void>("stop");
}