toggleHardUnMuteVideo method
Implementation
Future<void> toggleHardUnMuteVideo(String clientId) async {
for (var model in participantsList) {
if (model.clientId == clientId) {
model.isVideoMuted = false;
}
}
for (var model in moderatorsList) {
if (model.clientId == clientId) {
model.isVideoMuted = false;
}
}
EnxRtc.hardUnMuteVideo(clientId);
}