resumeForwardStreamToAllRooms method
@detail api @author shenpengliang @brief Resumes relaying media streams paused by calling pauseForwardStreamToAllRooms{@link #ByteRTCRoom#pauseForwardStreamToAllRooms} to all rooms. @return - 0: Success. - < 0 : Fail. See ByteRTCReturnStatus{@link #ByteRTCReturnStatus} for more details. @note The other users in the room will receive callback of rtcRoom:onUserJoined:{@link #ByteRTCRoomDelegate#rtcRoom:onUserJoined} and rtcRoom:onUserJoined:{@link #ByteRTCRoomDelegate#rtcRoom:onUserJoined} when you resume relaying.
Implementation
FutureOr<int> resumeForwardStreamToAllRooms() async {
return await nativeCall('resumeForwardStreamToAllRooms', []);
}