Created
May 11, 2023 04:14
-
-
Save your-diary/8c453aeeae382707e9ecbfc26e55da5c to your computer and use it in GitHub Desktop.
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 Color { red, blue, green } | |
void main() { | |
final color = Color.red; | |
switch (color) { | |
Color.red => "red", | |
Color.blue => "blue", | |
Color.green => "green", | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment