getApplicationMuteState method

Future<bool?> getApplicationMuteState()

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

Return:

Returned mute status

Implementation

Future<bool?> getApplicationMuteState() async {
  var result = await _channel.invokeMethod('getApplicationMuteState');
  return V2TXLiveFlutterResult.boolValue(result);
}