Web workers in Angular 2 Dart
I'm experimenting with angular 2 for a large project that would benefit from handing off tasks to web workers. I've found examples of ng2 web workers for JavaScript and TypeScript but struggling to convert these into dart equivalent. Has anyone done this? Or know how to do this? Below is my current main.dart bootstrap file, the AppComponent should have access to the UI, and the CustomerService work in a worker. import 'package:angular2/platform/browser.dart'; import 'package:angular2/web_worker/ui.dart'; import 'package:ngMegatron/app_component.dart'; import 'package:ngMegatron/services