address property
String?
get
address
The RTCIceCandidate interface's read-only address
property is
a string providing the IP address of the device which is the source of the
candidate.
The address
is null
by default if not otherwise specified.
The address
field's value is set from the candidateInfo
options object
passed to the RTCIceCandidate.RTCIceCandidate
constructor.
You can't specify the value of address
directly in the options object,
but its value is automatically extracted from the object's candidate
a-line, if it's formatted properly.
Implementation
external String? get address;