direction property

Implementation

RTCRtpTransceiverDirection get direction =>
    RTCRtpTransceiverDirection.fromValue(
        js_util.getProperty(this, 'direction'));
void direction=(RTCRtpTransceiverDirection newValue)

Implementation

set direction(RTCRtpTransceiverDirection newValue) {
  js_util.setProperty(this, 'direction', newValue.value);
}