8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeef572 commit 59af3c8Copy full SHA for 59af3c8
lib/rtc_data_channel.dart
@@ -126,9 +126,11 @@ class RTCDataChannel {
126
final _messageController = StreamController<RTCDataChannelMessage>.broadcast(sync: true);
127
128
/// Stream of state change events. Emits the new state on change.
129
+ /// Closes when the [RTCDataChannel] is closed.
130
Stream<RTCDataChannelState> stateChangeStream;
131
132
/// Stream of incoming messages. Emits the message.
133
134
Stream<RTCDataChannelMessage> messageStream;
135
136
RTCDataChannel(this._peerConnectionId, this._label, this._dataChannelId) {
0 commit comments