Before enums were available in Dart I wrote some cumbersome and hard to maintain code to simulate enums and now want to simplify it. I need to get the value of the enum as
enum day {MONDAY, TUESDAY} print(day.toString().split('.')[1]); OR print(day.toString().split('.').last);