updateUserAudioState method
void
updateUserAudioState()
Implementation
void updateUserAudioState(String userId, bool hasAudio,
TUIChangeReason reason, RxList<UserModel> destList) {
var index = getUserIndex(userId, destList);
if (index == -1) {
return;
}
destList[index].hasAudioStream.value = hasAudio;
}