Inheritance
Annotations
  • @DomName('RTCPeerConnection')
  • @SupportedBrowser(SupportedBrowser.CHROME)
  • @Experimental()

Constants

addStreamEvent → EventStreamProvider<MediaStreamEvent>

Static factory designed to expose addstream events to event handlers that are not necessarily instances of RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.addstreamEvent')
dataChannelEvent → EventStreamProvider<RtcDataChannelEvent>

Static factory designed to expose datachannel events to event handlers that are not necessarily instances of RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.datachannelEvent')
iceCandidateEvent → EventStreamProvider<RtcIceCandidateEvent>

Static factory designed to expose icecandidate events to event handlers that are not necessarily instances of RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.icecandidateEvent')
const EventStreamProvider<RtcIceCandidateEvent>('icecandidate…
iceConnectionStateChangeEvent → EventStreamProvider<Event>

Static factory designed to expose iceconnectionstatechange events to event handlers that are not necessarily instances of RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.iceconnectionstatechangeEvent')
const EventStreamProvider<Event>('iceconnectionstatechange')
negotiationNeededEvent → EventStreamProvider<Event>

Static factory designed to expose negotiationneeded events to event handlers that are not necessarily instances of RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.negotiationneededEvent')
const EventStreamProvider<Event>('negotiationneeded')
removeStreamEvent → EventStreamProvider<MediaStreamEvent>

Static factory designed to expose removestream events to event handlers that are not necessarily instances of RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.removestreamEvent')
const EventStreamProvider<MediaStreamEvent>('removestream')
signalingStateChangeEvent → EventStreamProvider<Event>

Static factory designed to expose signalingstatechange events to event handlers that are not necessarily instances of RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.signalingstatechangeEvent')
const EventStreamProvider<Event>('signalingstatechange')

Static Properties

instanceRuntimeType → Type

@Deprecated("Internal Use Only"), read-only
supported → bool

Checks if Real Time Communication (RTC) APIs are supported and enabled on the current platform.

read-only

Static Methods

generateCertificate(keygenAlgorithm) → Future

@DocsEditable(), @DomName('RTCPeerConnection.generateCertificate'), @Experimental()

Constructors

RtcPeerConnection(Map rtcConfiguration, [ Map mediaConstraints ])

factory
RtcPeerConnection.internal_()

Properties

iceConnectionState → String

@DocsEditable(), @DomName('RTCPeerConnection.iceConnectionState'), read-only
iceGatheringState → String

@DocsEditable(), @DomName('RTCPeerConnection.iceGatheringState'), read-only
localDescription → RtcSessionDescription

@DocsEditable(), @DomName('RTCPeerConnection.localDescription'), read-only
onAddStream → Stream<MediaStreamEvent>

Stream of addstream events handled by this RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.onaddstream'), read-only
onDataChannel → Stream<RtcDataChannelEvent>

Stream of datachannel events handled by this RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.ondatachannel'), read-only
onIceCandidate → Stream<RtcIceCandidateEvent>

Stream of icecandidate events handled by this RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.onicecandidate'), read-only
onIceConnectionStateChange → Stream<Event>

Stream of iceconnectionstatechange events handled by this RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.oniceconnectionstatechange'), read-only
onNegotiationNeeded → Stream<Event>

Stream of negotiationneeded events handled by this RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.onnegotiationneeded'), read-only
onRemoveStream → Stream<MediaStreamEvent>

Stream of removestream events handled by this RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.onremovestream'), read-only
onSignalingStateChange → Stream<Event>

Stream of signalingstatechange events handled by this RtcPeerConnection.

@DocsEditable(), @DomName('RTCPeerConnection.onsignalingstatechange'), read-only
remoteDescription → RtcSessionDescription

@DocsEditable(), @DomName('RTCPeerConnection.remoteDescription'), read-only
signalingState → String

@DocsEditable(), @DomName('RTCPeerConnection.signalingState'), read-only
hashCode → int

read-only, inherited
on → Events

This is an ease-of-use accessor for event streams which should only be used when an explicit accessor is not available.

read-only, inherited
runtimeType → Type

A representation of the runtime type of the object.

read-only, inherited

Operators

operator ==(other) → bool

The equality operator.

inherited

Methods

addIceCandidate(candidate, [ VoidCallback successCallback, RtcPeerConnectionErrorCallback failureCallback ]) → Future

addStream(MediaStream stream, [ Map mediaConstraints ]) → void

close() → void

@DocsEditable(), @DomName('RTCPeerConnection.close')
createAnswer([Map mediaConstraints ]) → Future<RtcSessionDescription>

createDataChannel(String label, [ Map options ]) → RtcDataChannel

createDtmfSender(MediaStreamTrack track) → RtcDtmfSender

@DocsEditable(), @DomName('RTCPeerConnection.createDTMFSender')
createOffer([Map mediaConstraints ]) → Future<RtcSessionDescription>

getLocalStreams() → List<MediaStream>

@DocsEditable(), @DomName('RTCPeerConnection.getLocalStreams')
getRemoteStreams() → List<MediaStream>

@DocsEditable(), @DomName('RTCPeerConnection.getRemoteStreams')
getStats(MediaStreamTrack selector) → Future<RtcStatsResponse>

@DomName('RTCPeerConnection.getStats')
getStreamById(String streamId) → MediaStream

@DocsEditable(), @DomName('RTCPeerConnection.getStreamById')
removeStream(MediaStream stream) → void

@DocsEditable(), @DomName('RTCPeerConnection.removeStream')
setLocalDescription(RtcSessionDescription description) → Future

setRemoteDescription(RtcSessionDescription description) → Future

updateIce([Map configuration, Map mediaConstraints ]) → void

addEventListener(String type, EventListener listener, [ bool useCapture ]) → void

inherited
dispatchEvent(Event event) → bool

@DocsEditable(), @DomName('EventTarget.dispatchEvent'), inherited
noSuchMethod(Invocation invocation) → dynamic

Invoked when a non-existent method or property is accessed.

inherited
removeEventListener(String type, EventListener listener, [ bool useCapture ]) → void

inherited
toString() → String

Returns the result of the JavaScript objects toString method.

inherited