can someone tell me if and how it is possible to use Dart enums in angular2 view templates?
It's suggested in Typescript to copy the enum into a component-scope. This works because an enum in javascript is a simple instance variable with a prototype.
But since enums in dart are first class citizens, they cannot be moved to an instance variable.
Thanks in advance!