iceState property

RTCIceTransportState get iceState

Implementation

RTCIceTransportState get iceState =>
    RTCIceTransportState.fromValue(js_util.getProperty(this, 'iceState'));
set iceState (RTCIceTransportState newValue)

Implementation

set iceState(RTCIceTransportState newValue) {
  js_util.setProperty(this, 'iceState', newValue.value);
}