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