setPlayoutDeviceMute method

Future<int> setPlayoutDeviceMute(
  1. bool mute
)

设置是否音频播放静音

Implementation

Future<int> setPlayoutDeviceMute(bool mute) async {
  IntValue reply = await _api.setPlayoutDeviceMute(BoolValue()..value = mute);
  return reply.value ?? -1;
}