enum Water { frozen(32), lukewarm(100), boiling(212); final int value; const Water(this.value); } void main() { print(Water.value) }