setAudioPlaybackDeviceMute method
@detail api
@author dixing
@brief Set the mute state of the current audio playback device. It's not mute by default.
@param mute
- true: Mute
- false: Speaking
@return Method call result
- 0: Success.
- < 0: failure
Implementation
FutureOr<int> setAudioPlaybackDeviceMute(bool mute) async {
return await nativeCall('setAudioPlaybackDeviceMute:', [mute]);
}