diff --git a/lib/src/rtc_peerconnection_impl.dart b/lib/src/rtc_peerconnection_impl.dart index 458d007..f0c8b99 100644 --- a/lib/src/rtc_peerconnection_impl.dart +++ b/lib/src/rtc_peerconnection_impl.dart @@ -314,7 +314,7 @@ class RTCPeerConnectionWeb extends RTCPeerConnection { @override Future> getStats([MediaStreamTrack? track]) async { - var stats; + web.RTCStatsReport stats; if (track != null) { var jsTrack = (track as MediaStreamTrackWeb).jsTrack; stats = await _jsPc.getStats(jsTrack).toDart; @@ -335,7 +335,7 @@ class RTCPeerConnectionWeb extends RTCPeerConnection { value.getProperty('type'.toJS).toDart, value.getProperty('timestamp'.toJS).toDartDouble, stats)); - }.jsify() + }.toJS, ]); return report; } diff --git a/lib/src/rtc_rtp_receiver_impl.dart b/lib/src/rtc_rtp_receiver_impl.dart index b017b6e..fd56929 100644 --- a/lib/src/rtc_rtp_receiver_impl.dart +++ b/lib/src/rtc_rtp_receiver_impl.dart @@ -30,7 +30,7 @@ class RTCRtpReceiverWeb extends RTCRtpReceiver { value.getProperty('type'.toJS).toDart, value.getProperty('timestamp'.toJS).toDartDouble, stats)); - }.jsify() + }.toJS, ]); return report; } diff --git a/lib/src/rtc_rtp_sender_impl.dart b/lib/src/rtc_rtp_sender_impl.dart index 38b40c2..c62aaaf 100644 --- a/lib/src/rtc_rtp_sender_impl.dart +++ b/lib/src/rtc_rtp_sender_impl.dart @@ -98,7 +98,7 @@ class RTCRtpSenderWeb extends RTCRtpSender { value.getProperty('type'.toJS).toDart, value.getProperty('timestamp'.toJS).toDartDouble, stats)); - }.jsify() + }.toJS, ]); return report; }