The RTCPeerConnectionIceEvent() constructor creates a new RTCPeerConnectionIceEvent object.
new RTCPeerConnectionIceEvent(type, options)typeA string with the name of the event. It is case-sensitive and browsers always set it to icecandidate.
options OptionalAn object that, in addition of the properties defined in Event(), can have the following properties:
candidateA RTCIceCandidate representing the ICE candidate being concerned by the event. If null, the event indicates the end of candidate gathering.
urlA string containing the URL of the STUN or TURN server which was used to gather the candidate. If the candidate was not gathered by a STUN or TURN server, this value must be null, which is also the default value.
A new RTCPeerConnectionIceEvent object, configured as specified in the provided options.
RTCPeerConnection.