getAudioMixingPlayoutVolume method

  1. @override
Future<int?> getAudioMixingPlayoutVolume()

Gets the audio mixing volume for local playback.

This method helps troubleshoot audio volume related issues.

Returns

  • The audio mixing volume for local playback, if the method call is successful. The value range is 0,100.
  • < 0: Failure.

Implementation

@override
Future<int?> getAudioMixingPlayoutVolume() {
  return _invokeMethod('getAudioMixingPlayoutVolume');
}