toggleHardUnMuteVideo method

Future<void> toggleHardUnMuteVideo(
  1. String clientId
)

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);
}