getAudioPlaybackDeviceMute method

FutureOr<int> getAudioPlaybackDeviceMute(
  1. bool mute
)

@detail api @author dixing @brief Get the mute state of the current audio playback device. @param mute
- true: Mute - false: Speaking @return Method call result
- 0: Success. - < 0: failure

Implementation

FutureOr<int> getAudioPlaybackDeviceMute(bool mute) async {
  return await nativeCall('getAudioPlaybackDeviceMute:', [mute]);
}