currentDirection property

RTCRtpTransceiverDirection? currentDirection

Implementation

RTCRtpTransceiverDirection? get currentDirection {
  final ret = js_util.getProperty(this, 'currentDirection');

  return ret == null ? null : RTCRtpTransceiverDirection.fromValue(ret);
}