onUserMuteVideo method

void onUserMuteVideo(
  1. int remoteUid,
  2. bool muted
)

Implementation

void onUserMuteVideo(int remoteUid, bool muted) {
  tools.log("ChatCallKitManagerImpl: onUserMuteVideo called, remoteUid: $remoteUid, muted: $muted");
  if (_chat.model.curCall != null) {
    for (var value in handlers) {
      value.onUserMuteVideo.call(remoteUid, muted);
    }
  }
}