getAudioMixingPublishVolume method

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

Gets the audio mixing volume for publishing.

This method helps troubleshoot audio volume related issues.

Returns

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

Implementation

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