Skip to content

Instantly share code, notes, and snippets.

@kwmt
Created October 28, 2018 08:33
Show Gist options
  • Save kwmt/a4a24c9a210cb0779e74c615d5ef25dd to your computer and use it in GitHub Desktop.
Save kwmt/a4a24c9a210cb0779e74c615d5ef25dd to your computer and use it in GitHub Desktop.
about enum of dart
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