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 8cd9300 commit 201d06aCopy full SHA for 201d06a
android/src/main/java/com/cloudwebrtc/webrtc/utils/ConstraintsArray.java
@@ -102,6 +102,10 @@ public void pushArray(ConstraintsArray array){
102
mArray.add(array.toArrayList());
103
}
104
105
+ public void pushByte(byte[] value){
106
+ mArray.add(value);
107
+ }
108
+
109
public void pushMap(ConstraintsMap map){
110
mArray.add(map.toMap());
111
lib/rtc_data_channel.dart
@@ -58,8 +58,7 @@ class RTCDataChannelMessage {
58
this._data = binary;
59
this._isBinary = true;
60
61
-
62
63
/// Tells whether this message contains binary.
64
/// If this is false, it's a text message.
65
bool get isBinary => _isBinary;
0 commit comments