start method

Future<void> start()

Enables the local participant's audio and sends the audio to a conference. This method is not available for listeners and triggers the UnsupportedError.

Implementation

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