public DataChannelNative(DataChannel dataChannel)
 {
     _dataChannel = dataChannel;
     _dataChannel.RegisterObserver(this);
     Debug.WriteLine($"DataChannelNative({dataChannel.Label()}): status -> {State}");
 }
 public void OnDataChannel(DataChannel dc)
 {
     outerInstance.RunOnUiThread(() =>
     {
         throw new Exception("AppRTC doesn't use data channels, but got: " + dc.Label() + " anyway!");
     });
 }