Created
October 28, 2018 08:33
-
-
Save kwmt/a4a24c9a210cb0779e74c615d5ef25dd to your computer and use it in GitHub Desktop.
about enum of dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum Type { Hoge, Fuga } | |
void main() { | |
print(Type.Hoge.toString()); | |
print(Type.Hoge.toString().split('.')[1]); | |
// output: | |
// Type.Hoge | |
// Hoge | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment