Skip to content

Instantly share code, notes, and snippets.

@AbdullohBahromjonov
Created April 29, 2022 16:50
Show Gist options
  • Save AbdullohBahromjonov/56f225b58f40b112fccfd7ef5036f027 to your computer and use it in GitHub Desktop.
Save AbdullohBahromjonov/56f225b58f40b112fccfd7ef5036f027 to your computer and use it in GitHub Desktop.
Enumeration
enum Weekdays {
monday,
tuesday,
wednesday,
thursday,
friday,
saturday,
sunday
}
void main() {
final firstDay = Weekdays.monday;
final allDays = Weekdays.values.forEach((day){
print(day);
});
print(firstDay);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment