Skip to content

Instantly share code, notes, and snippets.

@ThinkDigitalSoftware
Created August 11, 2018 16:01
Show Gist options
  • Save ThinkDigitalSoftware/6a9dd288a3d6220f5be5bee81dc4ede6 to your computer and use it in GitHub Desktop.
Save ThinkDigitalSoftware/6a9dd288a3d6220f5be5bee81dc4ede6 to your computer and use it in GitHub Desktop.
enumString Example
void main() {
var one = enumString.HELLO;
print(one);
if(one == enumString.HELLO)
print("$one, Jonathan!");
}
class enumString{
static const HELLO="hello";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment