getAudioMixingPlaybackVolume method Null safety
Gets the playback volume of a mixing audio stream.
Implementation
Future<int> getAudioMixingPlaybackVolume() async {
IntValue reply = await _api.getAudioMixingPlaybackVolume();
return reply.value ?? -1;
}