setApplicationMuteState method
Set the mute status of the current process in the Windows system volume mixer (supports only the Windows platform)
Parameters:
bMute
Whether to mute
Return:
0
: success
Implementation
Future<int?> setApplicationMuteState(bool bMute
) async {
var result = await _channel.invokeMethod('setApplicationMuteState', {
"bMute": bMute
});
return V2TXLiveFlutterResult.intValue(result);
}