getApplicationPlayVolume method

Future<int?> getApplicationPlayVolume()

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

Return:

Returned volume value. Value range: [0,100]

Implementation

Future<int?> getApplicationPlayVolume() async {
  var result = await _channel.invokeMethod('getApplicationPlayVolume');
  return V2TXLiveFlutterResult.intValue(result);
}