getApplicationMuteState method

Future<bool?> getApplicationMuteState()

Get the mute status of the current process in the Windows system volume mixer (supports only the Windows platform)

Returned value:

Returned mute status

Implementation

Future<bool?> getApplicationMuteState() {
  return _channel.invokeMethod('getApplicationMuteState');
}