getApplicationMuteState method Null safety

Future<bool?> getApplicationMuteState()

Get the mute status of the current process in the Windows system volume mixer

Note: this API supports only the Windows platform

Returned value:

Returned mute status

Implementation

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