onUserMuteAudio method

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

Implementation

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