getApplicationMuteState method
Querying whether the current process is muted in the volume mixer (for Windows)
Implementation
int getApplicationMuteState() {
if (_only_support_windows) {
return _deviceFFIBindings.get_application_mute_state(_nativePointer);
} else {
debugPrint("device-manager-api not support");
return -1;
}
}