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 fe6718b commit e952214Copy full SHA for e952214
lib/src/web/rtc_peerconnection.dart
@@ -76,7 +76,7 @@ class RTCPeerConnection {
76
js.JsObject.fromBrowserObject(_jsPc)['onicegatheringstatechange'] =
77
js.JsFunction.withThis((_) {
78
_iceGatheringState = iceGatheringStateforString(_jsPc.iceGatheringState);
79
- onIceGatheringState.call(_iceGatheringState);
+ onIceGatheringState?.call(_iceGatheringState);
80
});
81
82
_jsPc.onRemoveStream.listen((mediaStreamEvent) {
0 commit comments