dart-archive / isolate

Makes working with Dart isolates easier.
https://pub.dev/packages/isolate
BSD 3-Clause "New" or "Revised" License
90 stars 34 forks source link

Fix type on _create to match use at call site #20

Closed leafpetersen closed 6 years ago

leafpetersen commented 6 years ago

Fixes #19 .

lrhn commented 6 years ago

Seems OK for now. The Isolate.spawn function will/has become generic (spawn<T>(void Function(T) entryPoint, T message, ...)), but until Dart 2, it's probably safer to not depend on that.

leafpetersen commented 6 years ago

Thanks!