skip to Main Content

Flutter ReceiverPort don't listen

I'm using the flutter_downloader package to download files with my app. The progress notification is working nicely. but my ReceivePort is not listening to the progress. final ReceivePort port = ReceivePort(); @override void initState() { super.initState(); IsolateNameServer.registerPortWithName( port.sendPort, 'downloader_sendport'); port.listen((dynamic…

VIEW QUESTION
Back To Top
Search