isPlayoutDeviceMute method

Future<bool> isPlayoutDeviceMute ()

获取当前音频播放设备是否静音

Implementation

Future<bool> isPlayoutDeviceMute() async {
  BoolValue reply = await _api.isPlayoutDeviceMute();
  return reply.value;
}