Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix jsify on function #61

Merged
merged 2 commits into from
Mar 19, 2025
Merged

Conversation

renefloor
Copy link
Contributor

Fixes #60

As explained in the thread in #60, there are 2 issues.

First it says there is no forEach on Instance of 'RtcStatsReport', which is weird, as that should exists, but stats is of type dynamic. This is fixed by setting the type of stats to RTCStatsReport.

When you do that you get parameter 1 is not of type 'Function'.. That's because jsify only works on primitives, so it converts the function to a generic object. By using toJS is converts the function to a JSExportedDartFunction.

Also fixes: flutter-webrtc/flutter-webrtc#1781 and flutter-webrtc/flutter-webrtc#1788

@EvertonMJunior
Copy link

Awesome @renefloor! Given that discovery, wouldn't it be valid to apply the same patch on lib\src\rtc_rtp_receiver_impl.dart (line 33) and lib\src\rtc_rtp_sender_impl.dart (line 101)? They use the same conversion of a Dart function with jsify.

@renefloor
Copy link
Contributor Author

Good catch! Fixed it in 5c489db

Quickly went through the other uses of jsify, but looks like they were all on maps, lists and strings.

@EvertonMJunior
Copy link

Perfect, just tested it on release mode too and this seems to solve the issue completely, no more errors.

Copy link
Member

@cloudwebrtc cloudwebrtc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lg!

@cloudwebrtc cloudwebrtc merged commit 9994968 into flutter-webrtc:main Mar 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants