muteOutput method

Future<bool> muteOutput(
  1. bool isMuted
)

Controls playing remote participants' audio to the local participant. Note: This API is only supported when the client connects to a Dolby Voice conference. The isMuted parameter enables and disables audio.

Implementation

Future<bool> muteOutput(bool isMuted) async {
  var result = await _methodChannel
      .invokeMethod<bool>("muteOutput", {"isMuted": isMuted});
  return Future.value(result);
}