I had code like the following: ```dart sink.stream.listen(worker.postMessage); ``` ... and had to change it to the following to get it to work/not error out: ```dart sink.stream.listen((m) => worker.postMessage(m)); ```