In java when you are defining an enum you can do something similar to the following. Is this possible in Dart?
enum blah { one(1), two(2); final num valu
Dart enums are used only for the simplest cases. If you need more powerful or more flexible enums, use classes with static const fields like shown in https://stackoverflow.com/a/15854550/217408
This way you can add whatever you need.