sendIceCandidateComplete method

void sendIceCandidateComplete(
  1. int userId
)

Implementation

void sendIceCandidateComplete(int userId) async {
  logTime("signaler sendIceCandidateComplete for userId= $userId", _TAG);
  try {
    await _signaler.sendIceCandidateComplete(userId == publisherId);
  } on WsException catch (ex) {
    logTime("sendIceCandidateComplete error: = $ex");
    notifySessionError(ex);
  }
}