Flutter ReceiverPort don't listen

Issue 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’);

Continue reading