resumeAllSubscribedStreamAudio method
@detail api
@valid since 3.60. Since version 3.60, this interface replaces the resumeAllSubscribedStream method for the below functions. If you have upgraded to version 3.60 or later and are still using this method, please migrate to this interface.
@author shenpengliang
@brief Resumes receiving all remote audio streams.
@return
- 0: Success.
- < 0 : Fail. See ReturnStatus{@link #ReturnStatus} for more details
@note
- Calling this API does not change the capture state and the transmission state of the remote clients.
- Calling this API does not change any subscription configuration.
Implementation
FutureOr<int> resumeAllSubscribedStreamAudio() async {
return await nativeCall('resumeAllSubscribedStreamAudio', []);
}