muteAudio method

dynamic muteAudio(
  1. String elementId,
  2. bool muted
)

Implementation

muteAudio(String elementId, bool muted) async {
  final res = await _callFunc(
    jsonEncode({
      "key": "muteAudio",
      "params": [elementId, muted],
    }),
  );
  return res;
}